Skip to content

0.7.0

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Apr 23:48

Install

Install and setup dprint.

Then in your project's dprint.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.7.0.wasm"
      ]
    }