problem: some note types don’t need backlinks displayed in the document. Particularly notes on the side panel, but at other times I want this feature too.
desired outcome: In the core plugin backlinks settings, there should be an exclude notes option.
Notes could be excluded by #tag by folder path, by YAML metadata (default show-backlinks: false or custom specific-note-type: no-backlinks).
thanks
a note in the sidepanel, where I wouldn’t want to see back links. usually I have a link to today’s daily note here, and I never want backlinks shown.
For some notes I always want to see backlinks. For other notes, they are irrelevant. Especially on mobile, having to swipe for backlinks is a pain (pun!).
If I could “toggle backlinks in document” per note, then I could set it per note and forget it.
+1
For atomic notes, backlinks in document is great. But for navigational (dashboards and mocs) notes, it’s too much.
To not to toggle on/off frequently, I use side pane but I’d rather backlinks in document because it’s larger and better.
Combined with retaining the display options for backlinks per note, it would be much better experience.
/*
Enable backlinks in note only for notes with a special class.
https://forum.obsidian.md/t/backlink-in-document-core-plugin-turn-off-this-setting-for-specific-notes/42137/8?u=cawlinteffid
*/
.embedded-backlinks {
display: none;
}
.show-backlinks .embedded-backlinks {
display: unset;
}
A cssclasses property of show-backlinks will enable backlinks in that note.
Click or tap the first icon (the one that looks like a list) to fold all backlinks. After that I believe Obsidian will remember the setting until you in-toggle it.