Implemented with https://github.com/casey/just/pull/1551 Examples of now-valid syntax: ``` default: a \ b \ c a: echo a b: echo b c: echo c ``` ``` default: a\ b\ c a: echo a b: echo b c: echo c ``` And this should be marked as invalid: ``` default: a\ b ```
Implemented with casey/just#1551
Examples of now-valid syntax:
And this should be marked as invalid: