Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/b-goodman/markdown-converter
- Owner: b-goodman
- Created: 2019-11-26T02:58:14.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T01:42:17.000Z (almost 2 years ago)
- Last Synced: 2024-04-23T19:11:55.614Z (8 months ago)
- Topics: showdown-extension
- Language: TypeScript
- Size: 974 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
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
```