pub const WIKI_CELLS_SET: &str = "\
Set cells in a Yandex Wiki grid.
```
ytcli wiki cells-set 8f1e2d3c-4b5a-4c6d-8e7f-9a0b1c2d3e4f --set 1:done=true --set 2:version=1.3.1
ytcli wiki cells-set 8f1e2d3c-4b5a-4c6d-8e7f-9a0b1c2d3e4f --set '2:version:=\"2\"'
```
Each cell is given as `ROW:SLUG=VALUE`: the row's id, the column's slug, and
the value. The value is read as `issue update --set` reads one: JSON when it
parses as JSON, text otherwise, and `:=` to insist on JSON. Every cell goes in
one request, against one revision.";