1.0.0 • Published 5 years ago

remark-code-screenshot v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

remark-code-screenshot

Remark plugin to convert code blocks into carbon.now.sh screenshots.

Basic Usage

import remark from 'remark'
import codeScreenshot from 'remark-code-screenshot'

const markdownInput = ["```
    import remark from 'remark'
    import codeScreenshot from 'remark-code-screenshot'

    const markdownInput = \"\"

    remark().use(codeScreenshot)
    .process(markdownInput, function (err, output) {
        console.log(output)
    })
```"]

remark()
    .use(codeScreenshot)
    .process(markdownInput, function (err, output) {
        console.log(output)
    });

Outputs something like this:

npm.io