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


TypeScript marked.parse函數代碼示例

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


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

示例1: it

    it('should sanitize when markedOptions.sanitize is true and no sanitizer function is provided', () => {

      const markedOptions: MarkedOptions = { sanitize: true };
      const mockRaw = '### Markdown-x';
      const sanitized = domSanitizer.sanitize(SecurityContext.HTML, parse(mockRaw));
      const unsanitized = parse(mockRaw);

      expect(markdownService.compile(mockRaw, false, markedOptions)).toBe(sanitized);
      expect(markdownService.compile(mockRaw, false, markedOptions)).not.toBe(unsanitized);
    });
開發者ID:joebell1329,項目名稱:ngx-markdown,代碼行數:10,代碼來源:markdown.service.spec.ts

示例2: callback

 fs.readFile(route.path, (err, data) => {
   if (err) {
     throw err;
   }
   var output: string;
   if (route.content === '') {
     route.content = Marked.parse(removeFrontMatter(data.toString()));
   }
   page.content = route.content;
   callback(res, page);
 });
開發者ID:stibi,項目名稱:docs-site,代碼行數:11,代碼來源:RenderService.ts

示例3: convertToHtml

 convertToHtml(){
     return  marked.parse(this.markdownInput);
 }
開發者ID:sulhome,項目名稱:angular2-form-validation,代碼行數:3,代碼來源:markdownPreview.ts

示例4: toHtml

 toHtml(text: string) {
     return marked.parse(text);
 }
開發者ID:7Silvan,項目名稱:angular2-unittest-samples-rc,代碼行數:3,代碼來源:markdown-service.ts

示例5: ngAfterViewInit

 ngAfterViewInit() {
   let content: string = this.el.nativeElement.innerHTML
   let parsed = marked.parse(content.trim());
   this.el.nativeElement.innerHTML = parsed;
 }
開發者ID:Toxicable,項目名稱:PassPast,代碼行數:5,代碼來源:markdown.component.ts


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