Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/b-goodman/markdown-converter

Showdown extended for use with custom elements.
https://github.com/b-goodman/markdown-converter

showdown-extension

Last synced: about 1 month ago
JSON representation

Showdown extended for use with custom elements.

Awesome Lists containing this project

README

        

# markdown-converter

Module exports a Showdown converter instance.

```javascript
const md = require('markdown-converter');

const text = '```javascript\nconst str = "test";\n```';
md.then((f) => {
console.log(f.makeHtml(text))
});
//'

const str = "test";\n

'
```