Skip to content

cirocosta/marked-wi

 
 

Repository files navigation

marked-wi

A full-featured markdown parser and compiler, written in JavaScript. Built for speed.

This fork of marked is a slower version of the originial as it exposes the inline code stuff to the lexer.

Install

npm install marked-wi --save

Usage

var data = document.querySelector('pre').innerHTML;
var Lexer = marked.Lexer;
var Parser = marked.Parser;

console.log(
    Parser.parse(
      Lexer.lex(data)));

Parser.parse() returns an object just like Lexer.lex() but with the inline stuff that it found with the InlineLexer (notice that the Parser in the original marked would return the rendered text, which is completly different from what we are doing here).

About

A markdown parser and compiler. Built for speed.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%