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:
2026-06-01 17:06:27 +08:00
parent a50f4a121b
commit d674451070
203 changed files with 401 additions and 401 deletions
@@ -1,7 +1,7 @@
* TODO 0098. Validate Binary Search Tree :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0098. Validate Binary Search Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0098. Validate Binary Search Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0100. Same Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0100. Same Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0100. Same Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0102. Binary Tree Level Order Traversal :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0102. Binary Tree Level Order Traversal][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0102. Binary Tree Level Order Traversal][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0104. Maximum Depth of Binary Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0104. Maximum Depth of Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0104. Maximum Depth of Binary Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0105. Construct Binary Tree From Preorder And Inorder Traversal :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0105. Construct Binary Tree From Preorder And Inorder Traversal][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0105. Construct Binary Tree From Preorder And Inorder Traversal][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0110. Balanced Binary Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0110. Balanced Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0110. Balanced Binary Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0124. Binary Tree Maximum Path Sum :hard:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0124. Binary Tree Maximum Path Sum][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0124. Binary Tree Maximum Path Sum][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0199. Binary Tree Right Side View :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0199. Binary Tree Right Side View][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0199. Binary Tree Right Side View][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0226. Invert Binary Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0226. Invert Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0226. Invert Binary Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0230. Kth Smallest Element In a Bst :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0230. Kth Smallest Element In a Bst][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0230. Kth Smallest Element In a Bst][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0235. Lowest Common Ancestor of a Binary Search Tree :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0235. Lowest Common Ancestor of a Binary Search Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0235. Lowest Common Ancestor of a Binary Search Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0297. Serialize And Deserialize Binary Tree :hard:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0297. Serialize And Deserialize Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0297. Serialize And Deserialize Binary Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0543. Diameter of Binary Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0543. Diameter of Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0543. Diameter of Binary Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0572. Subtree of Another Tree :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0572. Subtree of Another Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0572. Subtree of Another Tree][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 0590. N-ary Tree Postorder Traversal :easy:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*0590. N-ary Tree Postorder Traversal][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*0590. N-ary Tree Postorder Traversal][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 1028. Recover a Tree From Preorder Traversal :hard:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*1028. Recover a Tree From Preorder Traversal][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*1028. Recover a Tree From Preorder Traversal][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 1376. Time Needed to Inform All Employees :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*1376. Time Needed to Inform All Employees][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*1376. Time Needed to Inform All Employees][Roadmap]]
:END:
** TODO Approach
@@ -1,7 +1,7 @@
* TODO 1448. Count Good Nodes In Binary Tree :medium:
#+PROPERTY: STUDY_DECK_02
:PROPERTIES:
:NEETCODE: [[../../roadmap.org::*1448. Count Good Nodes In Binary Tree][Roadmap]]
:NEETCODE: [[file:../../roadmap.org::*1448. Count Good Nodes In Binary Tree][Roadmap]]
:END:
** TODO Approach