dprint-plugin-markdown
dprint-plugin-markdown copied to clipboard
Markdown code formatting plugin for dprint.
It seems like the `lineWidth` setting is completely ignored. Very long lines exceeding it are not broken up, see the playground here: [playground](https://dprint.dev/playground/#code/MQAgygpgxgLglgewHYCgUBUAWERIK4C2ARhAE4gIBmIUmAhqXbGQM4XUyZxsA2cSOCAA8oEMQBM2nHFGSU4AczykI4kAAMARHwEB1OOM6aAXCAAcABnUA6DeIAOpfjHUgWmBHh5r6ANxz8LGQwqiB0uBAA7jo4dJQh5NIg4ggwADQgRCp0ANb8CiBwMCB49tZAA/plugin/markdown) dprint-plugin-markdown version: 0.16.4 **Input Code** ```md #...
It might not be obvious for everyone how to build a `.wasm` file to be used as a plugin for `dprint`. Thus, extending the `README.md` with a brief section.
from: https://github.com/denoland/deno/issues/20383 I'm interested in writing this plugin. It'd be really helpful if i could get a pointer on where to start.
**Describe the bug** dprint-plugin-markdown version: 0.16.3 (dprint 0.45.0) **Input Code** ```md hello world - [test](test) - test ``` **Expected Output** ```md hello world - [test](test) - test ``` **Actual Output**...
Right now `dprint-plugin-markdown` requires two spaces for identation. Somehow BitBucket Markdown formatter requires [FOUR spaces for nested lists](https://stackoverflow.com/questions/37575916/how-to-markdown-nested-list-items-in-bitbucket). This makes dprint to break formatting on GitHub.
Markdown-it has a plugin [for definition list](https://github.com/markdown-it/markdown-it-deflist) based on the [Pandoc syntax](https://pandoc.org/MANUAL.html#definition-lists), which uses the syntax of [PHP Markdown Extra](https://michelf.ca/projects/php-markdown/extra/#def-list). It would be nice to support this. ```md Apple :...
**Describe the bug** dprint-plugin-markdown version: 0.16.2 I think there's some abiguity here given this syntax is used for markdown images, but when using `[^footnote]` syntax, placing the footnote directly after...
**Describe the bug** dprint breaks the code-block inside quote. Before vs After  dprint-plugin-markdown version: markdown-0.16.2.wasm **Input Code** ```md > Internally, with the builder this is something like > >...
**Describe the bug** dprint-plugin-markdown version: 0.16.1 We are using Doxygen to generate HTML from markdown. The `@ref foo` style links do not work if they are wrapped. **Input Code** ```md...
https://dprint.dev/playground/#code/IwOgBAhgUFZwfGARrBqyIMZA/language/markdown **Describe the bug** The formatter fails to preserve blank lines in blockquotes **only if they are indented**, resulting in the removal of blank lines between paragraphs within a blockquote....