Skip to content

Releases: arve0/markdown-it-attrs

v2.0.0

06 May 06:45
Compare
Choose a tag to compare

Allows one char empty attributes, like paragraph {a}<p a="">paragraph</p>, see issue #58.

v1.2.1

07 Jan 12:38
Compare
Choose a tag to compare

Fixed two bugs, #50 and #52, allowing `code with{.curly}` and multiple curlies behind `code`{.a} and ![](images.png){.b} in same paragraph.

v1.2.0

15 Sep 15:13
Compare
Choose a tag to compare

Add support for css-modules: ..green -> css-module="green". See #48.

v1.1.1

15 Sep 15:04
Compare
Choose a tag to compare

Fixed bug introduced in v1.0.0 for <figure> when using with implicit figures, see arve0/markdown-it-implicit-figures#18

v1.1.0

27 Aug 08:37
Compare
Choose a tag to compare
  • Fix ![](images.png){.class}, bug introduced in rewrite (v1.0.0), issue #46

v1.0.1

20 Aug 12:22
Compare
Choose a tag to compare
  • browser build in es5, transform with babel es2015

v1.0.0

07 Aug 22:33
Compare
Choose a tag to compare

Complete rewrite.

Fixes:

v0.8.0

14 Oct 10:58
Compare
Choose a tag to compare

Now

- item
  - nested
- item 2
{.green}

gives

<ul class="green">
<li>item
<ul>
<li>nested</li>
</ul>
</li>
<li>item 2</li>
</ul>

not

<ul>
<li>item
<ul class="green">
<li>nested</li>
</ul>
</li>
<li>item 2</li>
</ul>

Documented ambiguity in nested lists, see #32.

v0.7.4

14 Oct 09:15
Compare
Choose a tag to compare

Add keywords to improve npm search.

v0.7.1

22 Sep 06:27
Compare
Choose a tag to compare

Remove empty inline tokens after removed curlies, for compability with other plugins, like implicit-figure. See arve0/markdown-it-implicit-figures#13.