Hi Newbie here,
Supporter of both Mac and iOS app due to active development. Kudos and keep up the great work.
I am a big fan of the Zettelkasten method which includes highly hyperlinked notes to other notes. Question: is there any way, filter to find notes that are NOT linked to other notes? In other words, orphan notes?
Thanks in advance,
Tom
It can be done easily for tags, because FSN uses the standard MacOS tags so you can use Finder to do a complex logical search on them.
For hyperlinks, you should be able to do a "search all" in a good text editor (Sublime?) on your notes folder so that you can see which files don't contain ]( - part of a markdown hyperlink.
Let us know how you get on.
I'd not heard of Zettelkasten, very cool, thanks!
Your "search all" suggestion will only find notes that don't link out to others. I think the original issue is how to find notes that no other note links to, and I can't think of any way to achieve that without specifically writing code to do so.
The logic would go something like this, I guess;
Whilst I'm dubious that this is within scope for FSNotes, unfortunately I can't think how you could achieve it any other way :( @gingerbeardman any other ideas? :)
Ah yes, misunderstanding from me.
In that case I would approach it from the shell:
grep '](' * | cut -d'/' -f 4 | sed -E -e 's/\)/.md/g' -e 's/%20/ /g' | sort > linked.txtls -R1 *.md | sort > all.txtdiff linked.txt all.txt馃馃槑
馃槷
Most helpful comment
Ah yes, misunderstanding from me.
In that case I would approach it from the shell:
grep '](' * | cut -d'/' -f 4 | sed -E -e 's/\)/.md/g' -e 's/%20/ /g' | sort > linked.txtls -R1 *.md | sort > all.txtdiff linked.txt all.txt馃馃槑