1.0.1-2 • Published 5 years ago

@gerhobbelt/markdown-it-highlighted v1.0.1-2

Weekly downloads
6
License
Unlicense
Repository
github
Last release
5 years ago

markdown-it-highlighted npm version

Whether code was highlighted during markdown-it rendering.

Usage

const md = require('markdown-it')({ highlight: yourHighlighter })
  .use(require('markdown-it-highlighted'))

const env = {}

md.render('```js\nconsole.log(42)\n```', env)
env.highlighted === true // Assuming your highlighter handled the code.

md.render('# Hello, world!', env)
env.highlighted === false