Skip to content

Commit

Permalink
fix: underline links in markdown (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tjalle-S authored Jun 12, 2024
1 parent c10b7c1 commit dfa8cf5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/addonPage/addonPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,11 @@ const AddonPage = () => {
))}
{readMe !== undefined && (
<div className="markdown" data-testid="readme">
<Markdown remarkPlugins={[remarkGfm]}>{readMe}</Markdown>
<Markdown
className="markdown [&_a]:underline"
remarkPlugins={[remarkGfm]}>
{readMe}
</Markdown>
</div>
)}
</div>
Expand Down

0 comments on commit dfa8cf5

Please sign in to comment.