我正在尝试为 remark-html 添加表降价支持,但出现以下错误:TypeError: Cannot read property '3' of undefined
.
我尝试使用https://unifiedjs.com/learn/recipe/remark-table/上的官方文档来实现这一点。
模块和代码:
import matter from 'gray-matter';
import remark from 'remark';
import html from 'remark-html';
import remarkGfm from 'remark-gfm';
// Use remark to convert markdown into HTML string
const processedContent = await remark()
.use(remarkGfm)
.use(html)
.process(matterResult.content)
const contentHtml = processedContent.toString();
我错过了什么?没有 remark-gfm 一切都按预期工作,但表格不可见。