You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk/tests/config-note-default-title.tesh

14 lines
295 B
Plaintext

$ cd blank
$ echo "[note]\n filename = '\{{title}}'" > .zk/config.toml
# The default title is Untitled.
$ zk new --dry-run
2>{{working-dir}}/Untitled.md
# Set a custom default title.
$ echo "default-title = 'Sans titre'" >> .zk/config.toml
$ zk new --dry-run
2>{{working-dir}}/Sans titre.md