We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81fec38 + 2445045 commit 40d1cecCopy full SHA for 40d1cec
src/lib/output/themes/default/partials/comment.tsx
@@ -39,12 +39,14 @@ export function commentTags(context: DefaultThemeRenderContext, props: Reflectio
39
40
return (
41
<>
42
- <h4 class="tsd-anchor-link">
43
- <a id={anchor} class="tsd-anchor"></a>
44
- {name}
45
- {anchorIcon(context, anchor)}
46
- </h4>
47
- <Raw html={context.markdown(item.content)} />
+ <div class={`tsd-tag-${name}`}>
+ <h4 class="tsd-anchor-link">
+ <a id={anchor} class="tsd-anchor"></a>
+ {name}
+ {anchorIcon(context, anchor)}
+ </h4>
48
+ <Raw html={context.markdown(item.content)} />
49
+ </div>
50
</>
51
);
52
})}
0 commit comments