如何让标记和谷歌代码美化一起工作?

时间:2012-07-12 10:23:39

标签: javascript codehighlighter

我正在使用marked将一些降价代码转换为html,后者有一些代码块。所以我想使用google-code-prettify突出显示代码。

Marked为代码提供了回调,如记录所示:

marked.setOptions({
  gfm: true,
  pedantic: false,
  sanitize: true,
  // callback for code highlighter
  highlight: function(code, lang) {
    if (lang === 'js') {
      return javascriptHighlighter(code);
    }
    return code;
  }
});

但我没有找到像谷歌代码美化的javascritHighlighter(..)这样的方法。如何让他们一起工作?

1 个答案:

答案 0 :(得分:6)

我自己就这样做了。您正在寻找的功能是:

/**
 * @param sourceCodeHtml {string} The HTML to pretty print.
 * @param opt_langExtension {string} The language name to use.
 *     Typically, a filename extension like 'cpp' or 'java'.
 * @param opt_numberLines {number|boolean} True to number lines,
 *     or the 1-indexed number of the first line in sourceCodeHtml.
 */
function prettyPrintOne(sourceCodeHtml, opt_langExtension, opt_numberLines)

所以你需要这样的东西:

prettyPrintOne(code, 'js', false)