@rstacruz/prettier-plugin-markdown-code-fences

Converts indented code blocks into fenced code blocks

Usage no npm install needed!

<script type="module">
  import rstacruzPrettierPluginMarkdownCodeFences from 'https://cdn.skypack.dev/@rstacruz/prettier-plugin-markdown-code-fences';
</script>

README



Prettier plugin: Markdown code fences

Plugin for Prettier to format Markdown files with code fences


NB: This micro-package is offered as-is and is only supported on a best effort basis.

Description

Converts indented code blocks into fenced code blocks.

Before After
## This is a Markdown file

Here are some terminal commands.

    cd /
    find . -name systemd
    uname -a
## This is a Markdown file

Here are some terminal commands.

```
cd /
find . -name systemd
uname -a
```

Usage

Install the plugin into an npm project and it will work automatically.

yarn add --dev @rstacruz/prettier-plugin-markdown-code-fences prettier
yarn run prettier --write file.md

Thanks

prettier-plugin-markdown-code-fences © 2020, Rico Sta. Cruz. Released under the MIT License.
Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz