Skip to content

Commit

Permalink
fix: revert parsing change
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Moore committed May 20, 2022
1 parent c93210c commit 550db92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/markdown/remark/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export async function renderMarkdown(
try {
const vfile = await parser
.use([rehypeCollectHeaders])
.use(rehypeStringify, { allowDangerousHtml: true, allowParseErrors: true })
.use(rehypeStringify, { allowDangerousHtml: true })
.process(input);
result = vfile.toString();
} catch (err) {
Expand Down

0 comments on commit 550db92

Please sign in to comment.