Skip to content

[CONSTRUCTING] reStructuredText parser and renderer.

License

Notifications You must be signed in to change notification settings

frantic1048/Est

Repository files navigation

Est

license_ code quality_ ci_ dm_

reStructuredText parser and renderer.

Install

Use yarn to fetch the package, or npm if you prefer.

yarn add @frantic1048/Est

Usage

After build:

// do not forget the ``@frantic1048`` scope
import est from '@frantic1048/Est'

// directly render rST into HTML string
const html = est.rst2html('reStructuredText string...')


// or...?
// welcome to the dark side...

// generate parsing tree
// which is an ASTy instance
const parse_t = est.parse('reStructuredText string...')

// transfrom parsing tree into doc tree
// which is an ASTy instance
const doc_t = est.transfrom(parse_t)

// render the doc tree into HTML string
const html_the_harder_way = est.render(doc_t)

All node types of the parsed tree can be found from est.TokenTypes .

The node structure of a specific markup could be referred in test/grammar.<MarkupName>.js

Render function is under constructing.

Build

Prepare:

# fetch source code
git clone https://github.com/frantic1048/Est.git

# fetch dependencies
yarn

Build and run test:

yarn ci

Production build:

yarn dist

Develop:

yarn dev

The build output is under lib folder. All possible files are:

est.dev.js

trace on, CommonJS module, debug and develop oriented.

est.min.js

trace off, single variable, Browser oriented.

est.js

trace off, CommonJS module, Node.js oriented.

Recognized Markups

Inline
Block-level

About

[CONSTRUCTING] reStructuredText parser and renderer.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published