1.0.7 • Published 4 years ago

@realzh/rz-markdown-it v1.0.7

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Realzh Markdown It

A fork of markdown-it.

Use MarkdownIt.parse to generate and update AST dynamicly to speed up previewing and syntax checking in VS Code.

Usage

var AST = require('@realzh/rz-markdown-it').AST

var ast = new AST('# Heading')

ast.parse()

var html = ast.generate_html()

console.log(html)

Development

Debug and Run Test

Debug

npm run watch

Press F5

Run Test

npm run test

Publish package

npm login
npm publish --access public