diff --git a/src/webpage/markdown.ts b/src/webpage/markdown.ts index c541dea..5545f3b 100644 --- a/src/webpage/markdown.ts +++ b/src/webpage/markdown.ts @@ -423,7 +423,7 @@ class MarkDown { ) { let build = "http"; let j = i + 4; - const endchars = new Set(["\\", "<", ">", "|", "]", " ", "\n"]); + const endchars = new Set("\\<>|[] \n(){}"); for (; txt[j] !== undefined; j++) { const char = txt[j]; if (endchars.has(char)) {