fix(markdown): enable linkify, disable fuzzyLink

This commit is contained in:
Paul 2021-11-04 21:04:44 +00:00
parent d82573b5fc
commit 3cf8c64d7c
2 changed files with 4 additions and 1 deletions

2
external/lang vendored

@ -1 +1 @@
Subproject commit bf0fd028b7702801483d4d491960b3f8af1b8c81
Subproject commit faafd6e4f3cf955d6cb684d9bec9de31e62f301a

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 {