fix(markdown): enable linkify, disable fuzzyLink

This commit is contained in:
Paul
2021-11-04 21:04:44 +00:00
parent 718f530017
commit 571fc49b32
2 changed files with 4 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ if (typeof window !== "undefined") {
export const md: MarkdownIt = MarkdownIt({
breaks: true,
linkify: true,
highlight: (str, lang) => {
const v = Prism.languages[lang];
if (v) {
@@ -73,6 +74,8 @@ export const md: MarkdownIt = MarkdownIt({
errorColor: "var(--error)",
});
md.linkify.set({ fuzzyLink: false });
// TODO: global.d.ts file for defining globals
declare global {
interface Window {