fix: add file: prefix to org-mode links for Emacs resolution
Emorg org-mode requires [[file:path]] syntax for file links to be clickable. Updated both extract.mjs and scaffold-notes.mjs generators, and fixed all 200 existing note files.
This commit is contained in:
@@ -248,7 +248,7 @@ function buildOrg(sortedNodes, problemsByTopic) {
|
||||
lines.push("");
|
||||
lines.push(`*** TODO Python`);
|
||||
lines.push(`*** TODO C++`);
|
||||
lines.push(`Notes: [[${notesFile}]]`);
|
||||
lines.push(`Notes: [[file:${notesFile}]]`);
|
||||
}
|
||||
lines.push("");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user