zoottelkeeper-obsidian-plugin icon indicating copy to clipboard operation
zoottelkeeper-obsidian-plugin copied to clipboard

Workaround: Hide Root Folder Note

Open cesar-programs opened this issue 2 years ago • 2 comments

If you would like to hide your root folder note, apply the following css snippet to your vault (replace 'Documents' with the name of your root folder)

div[data-path$='Documents.md']{  
    display: none;  
}

cesar-programs avatar Mar 09 '22 07:03 cesar-programs

Hey @23727, thank you so much for the tip!

It helped me to figure a way to hide all index notes generated by Zoottelkeeper plugin.

I set the Index Prefix to Index_ on plugin options and add this CSS snippet to hide all index notes:

div[data-path*='Index_']{
  display: none;
}

I don't want to see a MOC file on all my folders (but some people do). I just want to have a better connection on my notes when I see the graph view.

This plugin should have an option to hide index notes instead of proposing install Folder Note plugin JUST to hide the notes.

evandromacedo avatar Apr 01 '22 22:04 evandromacedo

Hey! How can I hide my index note if it's the same name as its parent folder? (without using that plugin)

mohitmujawdiya avatar Jun 12 '22 09:06 mohitmujawdiya