1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 02:03:14 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/filters/examples/toggle Operator (Examples).tid
saqimtiaz 4f07539164
Cycle operator improvements plus docs (#5069)
* Tweak cycle operator to support step size parameter and add docs for toggle and cycle

* Mention that title list should have no duplicates
2020-11-20 18:37:23 +00:00

28 lines
627 B
Plaintext

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]]" />
```