最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

markdown - parse marked customize for list - Stack Overflow

programmeradmin0浏览0评论

I've seen the docs and it has no example for the list i want to customize

more detail .ts#L137 as the list doesn't have tokens like heading, and others do. Only items

so i try

import { marked } from 'marked'
const renderer = {
  list({ items, ordered }) {
  const listitems = this.parser.parse(items); // the problem occurs
  // not work for `this.parser.parseInline(items)` as well
  const tag = ordered ? 'ol' : 'ul';

    return `<${tag} class="">${listitems}</${tag}>`
  },
  listitem({ tokens }) {
  const text = this.parser.parseInline(tokens);

    return `<li class="ml-2">${text}</li>`
  },
};
marked.use({ renderer });
let html = marked.parse(`
**Ingredients:**
* **For the Coffee Jelly:**  
  * Strong brewed coffee or espresso 
`)

nothing come out for the entire html

I think i don't understand how to work for items property for list in the renderer. could anyone help?

but if I delete this line const listitems = this.parser.parse(items);

  list({ items, ordered }) {
  const tag = ordered ? 'ol' : 'ul';

    return `<${tag} class="">${items}</${tag}>`
  },

it will result as below. other parts work expected, except the list parts


Ingredients:

[object Object]


发布评论

评论列表(0)

  1. 暂无评论