推薦一個markdown格式轉html格式的開源JavaScript庫

i042416發表於2018-10-04

這個markdown格式轉html格式的開源JavaScript庫在github上的地址:

https://github.com/millerblack/markdown-js

從markdown 格式轉成html原始碼格式

新建一個以js結尾的檔案,將下列內容貼上進去:

var markdown = require( "markdown" ).markdown;

console.log( markdown.toHTML( "Hello *World*!" ) );

用nodejs執行,可以看到markdown格式的字串:

Hello World!

被自動轉換成了html格式的字串:

Hello World!

除了nodejs以外,我們還可以在瀏覽器裡使用這個開源庫。

新建一個html,將下列原始碼貼上進去:

<!DOCTYPE html>

<html>

<body>

<textarea id="text-input" oninput="this.editor.update()"

rows="6" cols="60">Type **Markdown** here.</textarea>

<div id="preview"> </div>

<script src="../node_modules/markdown/lib/markdown.js"></script>

<script>

function Editor(input, preview) {

this.update = function () {

preview.innerHTML = markdown.toHTML(input.value);

};

input.editor = this;

this.update();

}

var $ = function (id) { return document.getElementById(id); };

new Editor($("text-input"), $("preview"));

</script>

</body>

</html>

用瀏覽器開啟這個html,在頂部輸入框裡輸入markdown程式碼後,能自動呼叫這個開源庫,轉換成html原始碼,然後賦給innerHTML, 這樣我們在UI上能看到實時的markdown程式碼轉html程式碼的結果。


相關文章