Skip to content

Commit

Permalink
fix: open links in new tabs (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Jun 29, 2024
1 parent 6bf4193 commit 84d8b30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const MarkdownTextImpl = () => {
),
a: ({ node, ...props }) => (
<a
target="_blank"
className={cn(
"text-primary font-medium underline underline-offset-4",
props.className,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ const MarkdownTextImpl = () => {
),
a: ({ node, ...props }) => (
<a
target="_blank"
className={cn(
"text-primary font-medium underline underline-offset-4",
props.className,
Expand Down

0 comments on commit 84d8b30

Please sign in to comment.