當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript highlight.js.default類代碼示例

本文整理匯總了TypeScript中highlight.js.default的典型用法代碼示例。如果您正苦於以下問題:TypeScript js.default類的具體用法?TypeScript js.default怎麽用?TypeScript js.default使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了js.default類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

  highlight: function(str: string, lang: string) {
    if (lang && HighlightJS.getLanguage(lang)) {
      try {
        return HighlightJS.highlight(lang, str).value
      } catch (__) { }
    }

    return ''; // use external default escaping
  }
開發者ID:nehbit,項目名稱:aether-public,代碼行數:9,代碼來源:markdown.ts

示例2: function

 highlight: function (str, lang) {
     if (lang && hljs.getLanguage(lang)) {
         try {
             return hljs.highlight(lang, str).value;
         } catch (__) {
         }
     }
     return ''; // use external default escaping
 },
開發者ID:nicholas-robson,項目名稱:dkydev_webapp,代碼行數:9,代碼來源:post.ts

示例3: catch

				highlight: (str: string, lang: string) => {
					if (lang && hljs.getLanguage(lang)) {
						try {
							return `<pre class="hljs"><code><div>${hljs.highlight(lang, str, true).value}</div></code></pre>`;
						} catch (error) { }
					}
					return `<pre class="hljs"><code><div>${this.engine.utils.escapeHtml(str)}</div></code></pre>`;
				}
開發者ID:diarmaidm,項目名稱:vscode,代碼行數:8,代碼來源:markdownEngine.ts

示例4: function

    highlight: function (str, lang) {
        if (lang && hljs.getLanguage(lang)) {
            try {
                return `<pre class="hljs"><code>${hljs.highlight(lang, str, true).value}</code></pre>`;
            } catch (error) { }
        }

        return `<pre class="hljs"><code>${md.utils.escapeHtml(str)}</code></pre>`;
    }
開發者ID:bpasero,項目名稱:vscode-markdown,代碼行數:9,代碼來源:extension.ts

示例5:

renderer.code = (code, language) => {
    // Check whether the given language is valid for highlight.js.
    const validLang = !!(language && hljs.getLanguage(language));
    language = validLang ? language : 'html'; // Default to html
    // Highlight only if the language is valid.
    const highlighted = hljs.highlight(language, code).value;
    // Render the highlighted code with `hljs` class.
    return `<pre><code class="hljs ${language}">${highlighted}</code></pre>`;
};
開發者ID:csgpro,項目名稱:csgpro.com,代碼行數:9,代碼來源:markdown.ts

示例6: function

var hlight = function(code:string,language:string) {
    var hljs = require('highlight.js');
    var html;
    if (typeof language === "undefined") {
        html = (hljs.highlight(language, code)).value;
    }
    else {
        html = (hljs.highlightAuto(code)).value;
    };
    return html2console('<pre class="hljs">' + html + '</pre>');
};
開發者ID:andrewwcaldwell,項目名稱:ChatFaces,代碼行數:11,代碼來源:index.ts

示例7:

 highlight: (code: string, language: string): string => {
   if (language) {
     return highlightJs.highlight(
         language.toLowerCase() === 'ts' ? 'typescript' : language, code).value;
   }
   return code;
 }
開發者ID:shlomiassaf,項目名稱:material2,代碼行數:7,代碼來源:transform-markdown.ts

示例8: highlightCodeBlock

export function highlightCodeBlock(code: string, language: string) {
  if (language) {
    return highlightJs.highlight(
      language.toLowerCase() === 'ts' ? 'typescript' : language, code).value;
  }

  return code;
}
開發者ID:Nodarii,項目名稱:material2,代碼行數:8,代碼來源:highlight-code-block.ts

示例9:

        highlight: (code: string, language: string) => {
          if (language) {
            // highlight.js expects "typescript" written out, while Github supports "ts".
            let lang = language.toLowerCase() === 'ts' ? 'typescript' : language;
            return hljs.highlight(lang, code).value;
          }

          return code;
        }
開發者ID:Promact,項目名稱:md2,代碼行數:9,代碼來源:docs.ts

示例10: function

 highlight: function(code, lang) {
     try {
         let hljs = require('highlight.js');
         return hljs.highlightAuto(code, [lang]).value;
     }
     catch (e) {
         return code;
     }
 }
開發者ID:martincottrell,項目名稱:pxt,代碼行數:9,代碼來源:docsrender.ts


注:本文中的highlight.js.default類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。