Releases: dprint/dprint-plugin-markdown
Releases · dprint/dprint-plugin-markdown
0.4.2
Install
Then in your project's .dprintrc.json:
- Specify the plugin url in the
"plugins"
array. - Ensure
.md
file extensions are matched in an"includes"
pattern. - 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
fix: #27 - Fix char boundary panic.
0.4.0
chore(release): 0.4.0
0.3.1
feat: Add support for more code block languages.
0.3.0
feat: Actually upgrade dprint-core.
0.2.4
fix: #26 - Do not add extra blank line after dprint-ignore comment wh…
0.2.3
fix: #23 - Maintain blank line for sub lists.
0.2.2
chore: Publish as draft.
0.2.1
fix: #20 - Newline or blank line should be respected in lists. Also fix having backticks in code blocks.
0.2.0
feat: #17 - Support formatting code blocks within markdown. Closes #17