We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663129c commit 7661a37Copy full SHA for 7661a37
src/ui/solid/render-context-tree.tsx
@@ -23,8 +23,8 @@ export function renderContextTree({
23
// Extract alias from aliased links ([[Note title|Alias]]) to be highlighted
24
highlights = highlights.map((hl) => hl.split('|').slice(-1)[0]);
25
26
- // Extract note title from heading and block links
27
- highlights = highlights.map((hl) => hl.split('#')[0]);
+ // Reformat heading and block links (e.g. [[Note title#Heading]]) to match reading view
+ highlights = highlights.map((hl) => hl.replace('#', ' > '));
28
29
return render(
30
() => (
0 commit comments