Improve example section indentation. Also works for HTML rendered output

This commit is contained in:
pmario 2026-03-09 19:48:04 +01:00
parent f2617c7fc4
commit 563c68947b
2 changed files with 15 additions and 3 deletions

View file

@ -35,5 +35,13 @@ Notes:
Examples:
* `--render '[!is[system]]' '[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]'` -- renders all non-system tiddlers as files in the subdirectory "tiddlers" with URL-encoded titles and the extension HTML
* `--render '.' 'tiddlers.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[tag[HelloThere]]'` -- renders the tiddlers tagged "HelloThere" to a JSON file named "tiddlers.json"
```
Render all non-system tiddlers as files in the subdirectory "tiddlers" with URL-encoded titles and the extension HTML:
--render '[!is[system]]' '[encodeuricomponent[]addprefix[tiddlers/]addsuffix[.html]]'
Render the tiddlers tagged "HelloThere" to a JSON file named "tiddlers.json"
--render '.' 'tiddlers.json' 'text/plain' '$:/core/templates/exporters/JsonFile' 'exportFilter' '[tag[HelloThere]]'
```

View file

@ -25,4 +25,8 @@ Notes:
Examples:
* `--save "[!is[system]is[image]]" "[encodeuricomponent[]addprefix[tiddlers/]]"` -- saves all non-system image tiddlers as files in the subdirectory "tiddlers" with URL-encoded titles
```
Saves all non-system image tiddlers as files in the subdirectory "tiddlers" with URL-encoded titles
--save "[!is[system]is[image]]" "[encodeuricomponent[]addprefix[tiddlers/]]"
```