nimiq-vitepress-theme
Version:
Nimiq UI theme for VitePress
4 lines (3 loc) • 341 B
JavaScript
export function parseInlineMarkdown(text) {
return text.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2" target="_blank" rel="noopener" class="underline hover:text-neutral-800 transition-colors">$1</a>').replace(/\*\*([^*]+)\*\*/g, "<strong>$1</strong>").replace(/\*([^*]+)\*/g, "<em>$1</em>").replace(/`([^`]+)`/g, "<code>$1</code>");
}