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-language.tesh

16 lines
511 B
Plaintext

$ cd blank
$ echo "[note]\n filename = '\{{slug title}} - \{{format-date now \"%B\"}}'" > .zk/config.toml
# The default language is `en`.
# Note the & converted to `and` in the slug.
$ zk new --title "Foo \& Bar" --date "January 2nd" --dry-run
2>{{working-dir}}/foo-and-bar - January.md
# Set a custom language.
# Note the & converted to `et` in the slug.
$ echo "language = 'fr'" >> .zk/config.toml
$ zk new --title "Ceci \& cela" --date "January 2nd" --dry-run
2>{{working-dir}}/ceci-et-cela - January.md