Package Exports
- awesome-md-renderer
- awesome-md-renderer/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (awesome-md-renderer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Awesome Markdown Renderer
Markdown renderer with GFM, Emoji, Katex, Prism and etc. support out of the box.
Install
npm i -S awesome-md-renderer
Usage
import { md } from "awesome-md-renderer";
const mdStr = `
# Title
__bold__
`;
const htmlStr = md(mdStr);