I can't be the first one to deal with it, but i couldn't find anything on it so i'm asking here:
Is there a way to hide certain tiddlers from search?
I'm adding a lot of images tiddlers and it really messing up my search reaults... if i could hide all the images tiddlers type or add some custom tag to all the tiddlers i don't want to show in search reault, that will be great
I'm adding a lot of images tiddlers and it really messing up my search reaults... if i could hide all the images tiddlers type or add some custom tag to all the tiddlers i don't want to show in search reault, that will be great
[search[Jack]!type[image/jpeg]]Found this solution that works for me:
\define searchResultList()
//<small>{{$:/language/Search/Matches/Title}}</small>//
<$list filter="[!is[system]!suffix[.png]!suffix[.jpg]!suffix[.jpeg]!suffix[.PNG]!suffix[.JPG]!suffix[.JPEG]search:title{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
//<small>{{$:/language/Search/Matches/All}}</small>//
<$list filter="[!is[system]!suffix[.png]!suffix[.jpg]!suffix[.jpeg]!suffix[.PNG]!suffix[.JPG]!suffix[.JPEG]search{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
\end
<<searchResultList>>