admin管理员组文章数量:1343915
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]
本文标签: markdownparse marked customize for listStack Overflow
版权声明:本文标题:markdown - parse marked customize for list - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736941a2530182.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论