搜尋

首頁  >  問答  >  主體

node.js - Markdown转HTML库

伊谢尔伦伊谢尔伦2784 天前569

全部回覆(3)我來回復

  • 高洛峰

    高洛峰2017-04-17 14:27:49

    我用過一個函式庫,我不知道能幫你嗎
    https://github.com/chjj/marked

    我用這個庫做了簡單markdown閱讀器,可以自己下下來玩玩
    https://github.com/hjzheng/markdown-reader

    語法和程式碼高亮建議結合 https://github.com/google/code-prettify 一塊使用

    這個我沒試過,但是 marked 會

    例如下面的程式碼
    用 ' 取代 ` 顯示

    '''css
    .class {
         background: url(data:image/gif;base64,R0lGODl ... ) no-repeat left center;
     }
    '''

    轉成了

    <pre>
        <code class="lang-css"> .class {
          background: url(data:image/gif;base64,R0lGODl ... ) no-repeat left center;
     }
        </code>
    </pre>

    結合 code-prettify ,你只需要在 pre 元素上加上 class=“prettyprint”, 你可以在node中添加,也可以在html用js動態添加

    回覆
    0
  • PHP中文网

    PHP中文网2017-04-17 14:27:49

    markdownJS

    雷雷

    http://www.cnblogs.com/sanshi/archive/2011/03/16/1986468.html

    回覆
    0
  • 高洛峰

    高洛峰2017-04-17 14:27:49

    Hexo 中使用的是 marked。

    回覆
    0
  • 取消回覆