我有这些选项来配置我的marked
对象,但表格没有用正确的 css 呈现。
{
gfm: true,
tables: true,
breaks: false,
pedantic: false,
sanitize: false,
smartLists: true,
xhtml: false,
smartypants: true,
langPrefix: 'hljs language-',
highlight(code) {
return hljs.highlightAuto(code, ['html', 'javascript', 'java']).value;
},
}
有什么我想念的吗?min.css
是否需要包含一个文件index.html
才能完成这项工作并为表格提供适当的 css?
该表呈现如下:
对应的降价为:
| ID | Name| email |
|:----:|:----:|:----:|
| ... | ... | ... |
| ... | ... | ... |
| ... | ... | ... |