Skip to content

Commit

Permalink
Feat: #140 마크다운 커스텀 a태그 속성 수정 (#141)
Browse files Browse the repository at this point in the history
* Feat: #140 마크다운 커스텀 a태그 속성 수정

* Feat: #140 aria-label 속성 추가
  • Loading branch information
Seok93 authored Sep 19, 2024
1 parent f0d7c6f commit c06e88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/CustomMarkdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const component: Partial<Components> = {
a(props) {
const { href, children } = props;
return (
<a href={href} className="text-cyan-700">
<a href={href} className="text-cyan-700" target="_blank" rel="noopener noreferrer" aria-label="open new browser">
{children}
</a>
);
Expand Down

0 comments on commit c06e88a

Please sign in to comment.