Unverified Commit 771c56f4 authored by boojack's avatar boojack Committed by GitHub

chore: fix renderer (#917)

parent 0f057e81
......@@ -14,7 +14,7 @@ const renderer = (rawStr: string) => {
const parsedContent = marked(matchResult[1], [], [Link, PlainText]);
return (
<strong>
<em>${parsedContent}</em>
<em>{parsedContent}</em>
</strong>
);
};
......
......@@ -14,7 +14,7 @@ const renderer = (rawStr: string) => {
return (
<p className="li-container">
<span className="ul-block"></span>
<span>${parsedContent}</span>
<span>{parsedContent}</span>
</p>
);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment