Fix so that links are clickable in Markdown mode.

Do not include closing parentheses in link regex.
This commit is contained in:
Jonatan Heyman 2023-03-14 13:46:34 +01:00
parent f4a5806f0c
commit 4a042ca5da
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ const modChar = window.heynote.platform.isMac ? "⌘" : "Ctrl"
const eventKeyModAttribute = window.heynote.platform.isMac ? "metaKey" : "ctrlKey"
const linkMatcher = new MatchDecorator({
regexp: /https?:\/\/[^\s]+/gi,
regexp: /https?:\/\/[^\s\)]+/gi,
decoration: match => {
return Decoration.mark({
class: "heynote-link",
@ -29,7 +29,7 @@ export const links = ViewPlugin.fromClass(class {
eventHandlers: {
click: (e, view) => {
let target = e.target
if (target.classList.contains("heynote-link") && e[eventKeyModAttribute]) {
if (target.closest(".heynote-link")?.classList.contains("heynote-link") && e[eventKeyModAttribute]) {
let linkEl = document.createElement("a")
linkEl.href = target.textContent
linkEl.target = "_blank"