1.1.0 • Published 7 years ago

markdown-it-prettier v1.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

markdown-it-prettier

NPM version NPM downloads CircleCI donate

Install

yarn add prettier markdown-it-prettier

Usage

const md = require('markdown-it')()
const prettier = require('markdown-it-prettier')

const options = { singleQuote: true }
md.use(prettier, options)

In:

```js
hello ( "world"
)

class Foo{
log() {return "42"}
}
```

Out:

<pre><code class="language-js">hello('world');

class Foo {
  log() {
    return '42';
  }
}
</code></pre>
```

It could format all kinds of code that Prettier could format.

Options

Prettier options.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

markdown-it-prettier © egoist, Released under the MIT License. Authored and maintained by egoist with help from contributors (list).

egoistian.com · GitHub @egoist · Twitter @_egoistlily

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago