chore: fix renderer (#917)

pull/918/head
boojack 2 years ago committed by GitHub
parent 0f057e81e9
commit 771c56f485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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>
);
};

Loading…
Cancel
Save