Things I have tried
What I’m trying to do
Hi, when I paste a picture into a note in Obsidian, it shows the part of the image I pasted in the tree folder of Obsidian, I want to hide it because it takes up a lot of my space, how do I get it? can hide it?
3 Likes
Denna
June 30, 2022, 3:06pm
2
In the Obsidian settings you could define a folder where all attachments go when inserted in a note. So they would be out of the way.
2 Likes
Maybe I will because so far I have not found a solution to this problem, anyway your suggestion helps me. Thank you
JimK
June 30, 2022, 5:54pm
4
If you don’t want to go the folder route you could hide them via a CSS snippet.
div[data-path$='.png']{
display: none;
}
If you do go the folder route and want to hide the folder you can do that too, just replace assets with the name of your folder:
div[data-path$='assets'],
div[data-path$='assets'] + div.nav-folder-children
{
display: none;
}
See this post it’s where I got it: Show / hide file types to be shown in file explorer
3 Likes
system
Closed
July 7, 2022, 5:55pm
5
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.