Reading from paragraphs breaks natural way of listing pre/post tasks:
andyburke opened this issue · 0 comments
andyburke commented
Eg:
## task
Does task
Run tasks `foo`, `bar` before this
Run tasks `baz`, `yak` after this
foo
, bar
, baz
and yak
will all be executed before task
because it is parsed like this:
[ 'before',
index: 38,
input: 'Run tasks `foo`, `bar` before this\nRun tasks `baz`, `yak` after this' ]
You have to have an additional newline between the Run tasks
definitions.