fix: remove extra # from tag content

This commit is contained in:
Jacky Zhao 2024-03-06 19:00:37 -08:00
parent f44e4d25e6
commit ba6c7a73d1

View file

@ -58,7 +58,7 @@ const TagContent: QuartzComponent = (props: QuartzComponentProps) => {
<div>
<h2>
<a class="internal tag-link" href={`../tags/${tag}`}>
#{tag}
{tag}
</a>
</h2>
{content && <p>{content}</p>}