1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 03:33:27 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/filters/examples/toggle Operator (Examples).tid

28 lines
627 B
Plaintext
Raw Normal View History

created: 20201107154352695
modified: 20201118174726982
tags: [[Operator Examples]] [[toggle Operator]]
title: toggle Operator (Examples)
type: text/vnd.tiddlywiki
<<.using-days-of-week>>
<<.operator-example 1 """[list[Days of the Week]] +[toggle[Wednesday]]""">>
To toggle a tag in a tiddler:
```
<$action-listops $tiddler="target" $tags="+[toggle[done]]" />
```
To toggle a title in a field:
```
<$action-listops $tiddler="target" $field="my-field" $subfilter="+[toggle[done]]" />
```
To toggle between a value pair:
```
<$action-listops $tiddler="target" $field="my-field" $subfilter="+[toggle[todo],[done]]" />
```