diff --git a/src/lib/markdown.ts b/src/lib/markdown.ts index aae8448..e224e20 100644 --- a/src/lib/markdown.ts +++ b/src/lib/markdown.ts @@ -15,5 +15,7 @@ export function stripMarkdown(text: string): string { } export function renderMarkdown(text: string): string { - return marked(text); + // Replace [[link]] with anchor tags having data-title attribute + const linkedText = text.replace(/\[\[([^\]]+)\]\]/g, '$1'); + return marked(linkedText); } diff --git a/src/routes/notes/[id]/+page.svelte b/src/routes/notes/[id]/+page.svelte index c5c12a2..8728761 100644 --- a/src/routes/notes/[id]/+page.svelte +++ b/src/routes/notes/[id]/+page.svelte @@ -12,21 +12,18 @@ $: id = $page.params.id; - onMount(() => { - const unsubscribe = notes.subscribe(allNotes => { - if (!allNotes || !id) return; - - note = allNotes.find(n => n.id === id); + $: { + if ($notes && id) { + note = $notes.find(n => n.id === id); if (note) { editedTitle = note.title; editedContent = note.content; - } else if (allNotes.length > 0) { + } else if ($notes.length > 0) { // Only redirect if we have loaded notes and didn't find this one goto('/'); } - }); - return () => unsubscribe(); - }); + } + } async function handleSave() { if (!editedTitle || !editedContent) return; @@ -41,9 +38,28 @@ console.error('Failed to update note:', error); } } + + async function handleLinkClick(event: MouseEvent) { + const target = event.target as HTMLElement; + if (target.tagName === 'A' && target.classList.contains('note-link')) { + event.preventDefault(); + const title = target.getAttribute('data-title'); + if (!title) return; + + // Check if a note with this title exists + const existingNote = $notes.find(n => n.title === title); + if (existingNote) { + // Navigate to the existing note + goto(`/notes/${existingNote.id}`); + } else { + // Navigate to the new note page with the title pre-filled + goto(`/notes/new?title=${encodeURIComponent(title)}`); + } + } + } -