casey / just

🤖 Just a command runner
https://just.systems
Creative Commons Zero v1.0 Universal
17.6k stars 399 forks source link

Update line continuations documentation #1998

Open laniakea64 opened 1 month ago

laniakea64 commented 1 month ago

Not sure when this changed, but this is valid now -

foo:
    echo {{ \
 "test" \
 }}

This is still invalid -

foo2:
    echo {{ \
"test" \
 }}
error: Expected backtick, identifier, '(', '/', or string, but found dedent
 ——▶ justfile:3:1
  │
3 │ "test" \
  │ ^