Update RemarkRenderer.tsx

pull/1140/head
Ganni 2024-12-02 22:43:51 -05:00 committed by GitHub
parent be884c3022
commit 6dd59fd515
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -26,7 +26,6 @@ import { remarkHtmlToText } from "./plugins/htmlToText";
import { remarkMention, RenderMention } from "./plugins/mentions";
import { remarkSpoiler, RenderSpoiler } from "./plugins/spoiler";
import { remarkTimestamps } from "./plugins/timestamps";
import { remarkTableLineBreaks } from "./plugins/tableLineBreaks";
import "./prism";
/**
@ -145,7 +144,6 @@ const render = unified()
.use(remarkEmoji)
.use(remarkMention)
.use(remarkHtmlToText)
.use(remarkTableLineBreaks)
.use(remarkRehype, {
handlers,
})