* chore: open URL from model detail page should open in an external browser * chore: remove unused param
15 lines
293 B
TypeScript
15 lines
293 B
TypeScript
import { Components } from 'react-markdown'
|
|
|
|
export const markdownComponents: Partial<Components> = {
|
|
a: ({ href, children, ...props }) => (
|
|
<a
|
|
target="_blank"
|
|
href={href}
|
|
className="text-[hsla(var(--app-link))]"
|
|
{...props}
|
|
>
|
|
{children}
|
|
</a>
|
|
),
|
|
}
|