-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[[Links]] without Pages showing up as 'Untitled' on the graph #40
Comments
I believe the issue is that obsidian grabs a file name or the contents of [[]] as the title, where Quartz uses the frontmatter, it's unable to grab a title because there is no frontmatter to the file. |
Yes that is likely. Although since the file is not created yet, this could probably be fixed with a conditional check if file exists type of command before the link is created in the graph code itself. Unfortunately I'm not a coder, or I would've tried it myself :/ |
Perhaps an if statement of sorts here would be a quick fix?
from: and this makes the titles on the unnamed nodes disappear. The nodes still show up, but i'm guessing adding an exception somewhere in "//draw individual nodes" should help? |
It is actually intended behaviour to name notes 'Untitled' if they do not have a title. To change this, you can filter out notes without title by modifying all instances of e.g.
becomes
|
Describe the bug
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Option A: "Untitled" should appear in a different colour and show the name "Artificial-Intelligence"
Option B: "Untitled" and corresponding dot/node should not show up on the graph at all
Screenshots
Quartz website graph:
Same graph in obsidian:
Desktop (please complete the following information):
Additional context
Context: I have a note taking style where I tag important keywords that I would like to get to later using [[keywordname ]] . Once enough mentions of [[keywordname]] turn up in my notes, obsidians graph shows multiple connections going into [[keywordname]] but the colour is greyed out implying that I haven't created a note on it yet. When I have time, I then double click on [[keywordname]] and it makes a page called "Keywordname" linked to it, where I summarize information about that keyword.
I use this instead of # tags since i can write my summary within that name itself, and I can leave many of these [[]] unlinked to pages incase it isn't important that I get to them, and they occupy a spot lower in the hierarchy in the obsidian graph depending on how often i've mentioned them.
The text was updated successfully, but these errors were encountered: