0.3.6 • Published 10 years ago

marked-wi v0.3.6

Weekly downloads
6
License
MIT
Repository
github
Last release
10 years ago

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).

0.3.6

10 years ago

0.3.5

10 years ago

0.3.4

10 years ago

0.3.3

10 years ago