Escaping templating - colon space is special in yaml
# https://taskfile.dev
version: '3'
tasks:
demo-ok: echo '{{`a:b`}}'
demo-fail: echo '{{`a: b`}}'
demo-alt-ok: "echo '{{`a: b`}}'"
# https://taskfile.dev
version: '3'
tasks:
demo-ok: echo '{{`a:b`}}'
demo-fail: echo '{{`a: b`}}'
demo-alt-ok: "echo '{{`a: b`}}'"
Notice the space difference between first and second case causes a failure.
The failure seems to happen at parse time, how come yaml parser is confused?