Skip to content

Releases: dprint/dprint-plugin-markdown

0.4.2

21 Nov 19:33
Compare
Choose a tag to compare

Install

Install and setup dprint.

Then in your project's .dprintrc.json:

  1. Specify the plugin url in the "plugins" array.
  2. Ensure .md file extensions are matched in an "includes" pattern.
  3. Add a "markdown" configuration property if desired.
    {
      // ...etc...
      "markdown": {
        // markdown config goes here
      },
      "includes": [
        "**/*.{md}"
      ],
      "plugins": [
        "https://plugins.dprint.dev/markdown-0.4.2.wasm"
      ]
    }

0.4.1

24 Aug 18:19
Compare
Choose a tag to compare
fix: #27 - Fix char boundary panic.

0.4.0

09 Aug 03:29
Compare
Choose a tag to compare
chore(release): 0.4.0

0.3.1

05 Aug 15:31
Compare
Choose a tag to compare
feat: Add support for more code block languages.

0.3.0

03 Aug 23:55
Compare
Choose a tag to compare
feat: Actually upgrade dprint-core.

0.2.4

13 Jul 23:43
Compare
Choose a tag to compare
fix: #26 - Do not add extra blank line after dprint-ignore comment wh…

0.2.3

07 Jul 19:58
Compare
Choose a tag to compare
fix: #23 - Maintain blank line for sub lists.

0.2.2

07 Jul 18:07
Compare
Choose a tag to compare
chore: Publish as draft.

0.2.1

07 Jul 17:31
Compare
Choose a tag to compare
fix: #20 - Newline or blank line should be respected in lists.

Also fix having backticks in code blocks.

0.2.0

06 Jul 17:32
Compare
Choose a tag to compare
feat: #17 - Support formatting code blocks within markdown.

Closes #17