How do you actually hide file that are anything other than .md

im not a programmer, and still, this shouldn’t be this much of waste of time, been trying to hide anything this isnt an a .md file for a week from the this sad file explorer.

any ideas are welcome.

It seems you’ve already set an attachments folder (looks like notes_media/). Why not collapse that folder in the Files tab? That’s what I do.


You can use CSS to hide file certain file types from the list. e.g.

.nav-file .nav-file-title[data-path$='.png'],
.nav-file .nav-file-title[data-path$='.gif'] {
    display: none;
}

and so on.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.