Skip to content

Releases: arve0/markdown-it-attrs

v3.0.3

28 May 15:33
Compare
Choose a tag to compare

Include markdown-it version 11 as peer-dependency, #108

v3.0.2

07 Feb 19:55
Compare
Choose a tag to compare
  • Updated markdown-it peer dependency.
  • fix security vulnerabilities with npm audit

v3.0.1

18 Aug 10:19
Compare
Choose a tag to compare

Fixed incorrect attribute assignment for inline code in lists, issue #94. Thanks to @rivy for report and fix.

v3.0.0

29 Jul 13:28
Compare
Choose a tag to compare

Support for markdown-it 9.0, issue #90

v2.4.1

29 May 14:46
Compare
Choose a tag to compare

Fixes #88

v2.4.0

24 May 15:52
Compare
Choose a tag to compare

Added allowedAttributes option, thanks @Connum :octocat:

v2.3.4

01 May 07:50
Compare
Choose a tag to compare

Resolve npm search issue.

v2.3.3

01 May 07:51
Compare
Choose a tag to compare

Upgraded babel for browser build.

v2.3.2

29 Sep 15:42
Compare
Choose a tag to compare

Fixed a bug that rendered

par {.class.with.dot}

as

<p css-module="classwith.dot">par</p>

This is now fixed and renders as

<p class="class.with.dot">par</p>

See #75.

v2.3.1

10 Jul 08:39
Compare
Choose a tag to compare

Allow = in attribute values, issue #70.