JavaScript使用marked.js在線(xiàn)Markdown轉(zhuǎn)HTML

marked.js是一個(gè)可以在線(xiàn)轉(zhuǎn)碼Markdown的JavaScript編寫(xiě)的庫(kù)卵惦∪悍觯可以非常方便的在線(xiàn)編譯Markdown代碼為HTML并直接顯示,并且支持完全的自定義各種格式粹胯。

項(xiàng)目地址:https://github.com/chjj/marked

安裝

使用npm則可以直接安裝:

npm install marked --save

使用

1. 使用示例

簡(jiǎn)單的使用示例:

var marked = require('marked');
console.log(marked('I am using __markdown__.'));
// Outputs: <p>I am using <strong>markdown</strong>.</p>

使用默認(rèn)值設(shè)置選項(xiàng)的示例:

var marked = require('marked');
marked.setOptions({
    renderer: new marked.Renderer(),
    gfm: true,
    tables: true,
    breaks: false,
    pedantic: false,
    sanitize: false,
    smartLists: true,
    smartypants: false
});

console.log(marked('I am using __markdown__.'));

在HTML頁(yè)面使用示例:

<!doctype html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Marked in the browser</title>
    <script src="lib/marked.js"></script>
</head>
<body>
    <div id="content"></div>
    <script>
        document.getElementById('content').innerHTML =
        marked('# Marked in browser\n\nRendered by **marked**.');
    </script>
</body>
</html>

2. 方法解析

marked(markdownString [,options] [,callback])

  • markdownString string類(lèi)型 - 要編譯的markdown源碼收毫。
  • options object類(lèi)型 - 選項(xiàng),也可以使用marked.setOptions方法設(shè)置谓媒。
  • callback function類(lèi)型 - 當(dāng)markdownString已經(jīng)被完全的異步解析完畢會(huì)調(diào)用這個(gè)函數(shù)淆院。如果options參數(shù)被省略,這個(gè)可以作為第二個(gè)參數(shù)句惯。

3. 選項(xiàng)

highlight

function類(lèi)型

代碼高亮的回調(diào)函數(shù)土辩。下面的第一個(gè)例子使用node-pygmentize-bundled的異步高亮,第二個(gè)例子使用highlight.js同步高亮:

var marked = require('marked');

var markdownString = '```js\n console.log("hello"); \n```';

// pygmentize-bundled的異步高亮
marked.setOptions({
    highlight: function (code, lang, callback) {
        require('pygmentize-bundled')({ lang: lang, format: 'html' }, code, function (err, result) {
            callback(err, result.toString());
        });
    }
});

// Using async version of marked
marked(markdownString, function (err, content) {
  if (err) throw err;
  console.log(content);
});

// highlight.js的同步高亮
marked.setOptions({
  highlight: function (code) {
    return require('highlight.js').highlightAuto(code).value;
  }
});

console.log(marked(markdownString));

highlight arguments

  • code string類(lèi)型 - 傳給highlighter的代碼塊抢野。
  • lang string類(lèi)型 - 代碼塊中指定的編程語(yǔ)言拷淘。
  • callback function類(lèi)型 - 當(dāng)使用一個(gè)異步highlighter時(shí)要調(diào)用這個(gè)回調(diào)函數(shù)。

renderer

object類(lèi)型 - 默認(rèn)為new Renderer()指孤。

一個(gè)Object启涯,包含了渲染為HTML的函數(shù)。

重寫(xiě)renderer方法

renderer選項(xiàng)允許你使用自定義樣式進(jìn)行渲染恃轩。這里有一個(gè)重寫(xiě)標(biāo)題標(biāo)記渲染的例子结洼,渲染成像GitHub一樣添加一個(gè)嵌入式錨標(biāo)簽的樣式:

var marked = require('marked');
var renderer = new marked.Renderer();

renderer.heading = function (text, level) {
    var escapedText = text.toLowerCase().replace(/[^\w]+/g, '-');

    return '<h' + level + '><a name="' +
                escapedText +
                 '" class="anchor" href="#' +
                 escapedText +
                 '"><span class="header-link"></span></a>' +
                  text + '</h' + level + '>';
},

console.log(marked('# heading+', { renderer: renderer }));

這個(gè)代碼將會(huì)輸出下面的HTML:

<h1>
    <a name="heading-" class="anchor" href="#heading-">
        <span class="header-link"></span>
    </a>
    heading+
</h1>

塊級(jí)元素渲染方法

  • code(string code, string language)
  • blockquote(string quote)
  • html(string html)
  • heading(string text, number level)
  • hr()
  • list(string body, boolean ordered)
  • listitem(string text)
  • paragraph(string text)
  • table(string header, string body)
  • tablerow(string content)
  • tablecell(string content, object flags)

flags有下面的屬性:

{
    header: true || false,
    align: 'center' || 'left' || 'right'
}

行內(nèi)元素渲染方法

  • strong(string text)
  • em(string text)
  • codespan(string code)
  • br()
  • del(string text)
  • link(string href, string title, string text)
  • image(string href, string title, string text)

gfm

boolean類(lèi)型 - 默認(rèn)為true

開(kāi)啟GitHub flavored markdown肪获。

tables

boolean類(lèi)型 - 默認(rèn)為true

開(kāi)啟GFM tables碌更。這個(gè)選項(xiàng)要求gfm選項(xiàng)被設(shè)置為true试躏。

breaks

boolean類(lèi)型 - 默認(rèn)為false

開(kāi)啟GFM line breaks尝盼。這個(gè)選項(xiàng)要求gfm選項(xiàng)被設(shè)置為true

pedantic

boolean類(lèi)型 - 默認(rèn)為false

模糊部分盡可能的遵循markdown.pl氮发。不修復(fù)原始的markdown中的bug或poor behavior盆犁。

sanitize

boolean類(lèi)型 - 默認(rèn)為false

輸出審查肚邢。忽略任何輸入的HTML酥艳。

smartLists

boolean類(lèi)型 - 默認(rèn)為true

Use smarter list behavior than the original markdown. May eventually be default with the old behavior moved into pedantic.

smartypants

boolean類(lèi)型 - 默認(rèn)為false

Use "smart" typograhic punctuation for things like quotes and dashes.

4. 訪(fǎng)問(wèn)lexer和parser

如果你愿意摊溶,你可以直接訪(fǎng)問(wèn)lexer和parser。

var tokens = marked.lexer(text, options);
console.log(marked.parser(tokens));
var lexer = new marked.Lexer(options);
var tokens = lexer.lex(text);
console.log(tokens);
console.log(lexer.rules);

5. CLI

$ marked -o hello.html
hello world
^D
$ cat hello.html
<p>hello world</p>

6. Philosophy behind marked

The point of marked was to create a markdown compiler where it was possible tofrequently parse huge chunks of markdown without having to worry aboutcaching the compiled output somehow...or blocking for an unnecesarily long time.
marked is very concise and still implements all markdown features. It is alsonow fully compatible with the client-side.
marked more or less passes the official markdown test suite in itsentirety. This is important because a surprising number of markdown compilerscannot pass more than a few tests. It was very difficult to get marked ascompliant as it is. It could have cut corners in several areas for the sakeof performance, but did not in order to be exactly what you expect in termsof a markdown rendering. In fact, this is why marked could be considered at adisadvantage in the benchmarks above.
Along with implementing every markdown feature, marked also implements GFMfeatures.

7. 基準(zhǔn)

node v0.8.x

$ node test --bench
marked completed in 3411ms.
marked (gfm) completed in 3727ms.
marked (pedantic) completed in 3201ms.
robotskirt completed in 808ms.
showdown (reuse converter) completed in 11954ms.
showdown (new converter) completed in 17774ms.
markdown-js completed in 17191ms.

Discount是用C語(yǔ)言編寫(xiě)的一個(gè)轉(zhuǎn)換器玖雁,Marked現(xiàn)在比Discount還要快更扁。

對(duì)于那些感到懷疑的:這些基準(zhǔn)運(yùn)行全部的markdown測(cè)試組件1000次盖腕。測(cè)試組件測(cè)試每個(gè)功能赫冬,并沒(méi)有單獨(dú)的偏向于某個(gè)特定的方面浓镜。

Pro level

如果你愿意,你可以直接訪(fǎng)問(wèn)lexer和parser劲厌。

var tokens = marked.lexer(text, options);
console.log(marked.parser(tokens));
var lexer = new marked.Lexer(options);
var tokens = lexer.lex(text);
console.log(tokens);
console.log(lexer.rules);
$ node
> require('marked').lexer('> i am using marked.')
[ { type: 'blockquote_start' },
  { type: 'paragraph',
    text: 'i am using marked.' },
  { type: 'blockquote_end' },
  links: {} ]

8. 運(yùn)行測(cè)試以及貢獻(xiàn)

If you want to submit a pull request, make sure your changes pass the test suite. If you're adding a new feature, be sure to add your own test.

The marked test suite is set up slightly strangely: test/new is for all tests that are not part of the original markdown.pl test suite (this is where your test should go if you make one). test/original is only for the original markdown.pl tests. test/tests houses both types of tests after they have been combined and moved/generated by running node test --fix or marked --test --fix.

In other words, if you have a test to add, add it to test/new/ and then regenerate the tests with node test --fix. Commit the result. If your test uses a certain feature, for example, maybe it assumes GFM is not enabled, you can add .nogfm to the filename. So, my-test.text becomes my-test.nogfm.text. You can do this with any marked option. Say you want line breaks and smartypants enabled, your filename should be: my-test.breaks.smartypants.text.

To run the tests:

cd marked/
node test

貢獻(xiàn)與許可協(xié)議

如果你向該項(xiàng)目貢獻(xiàn)代碼膛薛,則默認(rèn)你允許在MIT協(xié)議下分發(fā)你的代碼。You are also implicitly verifying that all code is your original work. </legalese>

9. 許可協(xié)議

Copyright (c) 2011-2014, Christopher Jeffrey. (MIT License)

See LICENSE for more info.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末补鼻,一起剝皮案震驚了整個(gè)濱河市哄啄,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌风范,老刑警劉巖咨跌,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異硼婿,居然都是意外死亡锌半,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門(mén)寇漫,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)刊殉,“玉大人,你說(shuō)我怎么就攤上這事州胳〖呛福” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵栓撞,是天一觀(guān)的道長(zhǎng)遍膜。 經(jīng)常有香客問(wèn)我,道長(zhǎng)瓤湘,這世上最難降的妖魔是什么捌归? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮岭粤,結(jié)果婚禮上惜索,老公的妹妹穿的比我還像新娘。我一直安慰自己剃浇,他們只是感情好巾兆,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著虎囚,像睡著了一般角塑。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上淘讥,一...
    開(kāi)封第一講書(shū)人閱讀 49,741評(píng)論 1 289
  • 那天圃伶,我揣著相機(jī)與錄音,去河邊找鬼。 笑死窒朋,一個(gè)胖子當(dāng)著我的面吹牛搀罢,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播侥猩,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼榔至,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了欺劳?” 一聲冷哼從身側(cè)響起唧取,我...
    開(kāi)封第一講書(shū)人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎划提,沒(méi)想到半個(gè)月后枫弟,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡鹏往,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年媒区,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片掸犬。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡袜漩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出湾碎,到底是詐尸還是另有隱情宙攻,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布介褥,位于F島的核電站座掘,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏柔滔。R本人自食惡果不足惜溢陪,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望睛廊。 院中可真熱鬧形真,春花似錦、人聲如沸超全。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)嘶朱。三九已至蛾坯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間疏遏,已是汗流浹背脉课。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工救军, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人倘零。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓唱遭,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親视事。 傳聞我的和親對(duì)象是個(gè)殘疾皇子胆萧,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容