Skip to content

Tehnix/vscode-tidymarkdown

Repository files navigation

Tidy Markdown Formatter

Build Status

Adds support for the formatting Markdown documents using tidy-markdown. No dependencies are neccessary, the extension uses the NPM package internally.

Configuration

Set tidy markdown to default formatter for markdown in your settings.json:

"[markdown]": {
    "editor.defaultFormatter": "tehnix.vscode-tidymarkdown"
},
"editor.formatOnSave": true, // probably want this to

Alternatively, use the Format Document With... command.

Explicitly enable or disable the Tidy Markdown formatter (in case of clash with others),

"tidyMarkdown.disableFormatter": false,

Disable ensureFirstHeaderIsH1 tidy-markdown option,

"tidyMarkdown.ensureFirstHeaderIsH1": false,

Change Log

0.0.5

  • Add option to disable ensureFirstHeaderIsH1

0.0.4

  • Pin tidy-markdown to version 2.0.4, see atom-beautify#1549 for related issue

0.0.3

  • Add icon to marketplace page

0.0.2

  • Add continuos deployment

0.0.1 Initial Release

  • Initial release of the tidy-markdown extension