buggyj / mediaplayer

MIT License
2 stars 1 forks source link

Remove slices and extras of the annotation tiddlers from the Recent section #12

Closed arunnbabu81 closed 1 year ago

arunnbabu81 commented 1 year ago

In streams plug in, there is an option to remove child nodes from the Recent section using this code - https://saqimtiaz.github.io/streams/#FAQs%2FHow%20can%20I%20show%20only%20the%20stream%20root%20tiddlers%20in%20the%20timeline%3F

Can something like that be done for the slices and extras of the annotation tiddlers since it will clutter the Recent section.

buggyj commented 1 year ago

that's a good idea

<$macrocall $name="timeline" format={{$:/language/RecentChanges/DateFormat}} subfilter='!regexp[slice]'/>

arunnbabu81 commented 1 year ago

Thank you. Thats works.

How to combine subfilter="get-stream-root[]" and subfilter='!regexp[slice]'

buggyj commented 1 year ago

have you tried subfilter='!regexp[slice]get-stream-root[]'

arunnbabu81 commented 1 year ago

This works.