tcmd: italic

This commit is contained in:
2024-02-29 02:15:11 -07:00
parent 2e8ddd8ed2
commit 18f8541de7
4 changed files with 20 additions and 3 deletions

View File

@@ -181,6 +181,8 @@ const renderInlineToken = (l: Line) => {
return <span>{token.content}</span>;
case "bold":
return <span className="font-bold">{token.content}</span>;
case "italic":
return <span className="italic">{token.content}</span>;
case "anchor":
return (
<Link