mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 00:20:57 -05:00
fix(markdown): enable linkify, disable fuzzyLink
This commit is contained in:
parent
d82573b5fc
commit
3cf8c64d7c
2 changed files with 4 additions and 1 deletions
2
external/lang
vendored
2
external/lang
vendored
|
@ -1 +1 @@
|
|||
Subproject commit bf0fd028b7702801483d4d491960b3f8af1b8c81
|
||||
Subproject commit faafd6e4f3cf955d6cb684d9bec9de31e62f301a
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue