I am new to the Gherkin language and this seems to me like very basic question but I could not find answer to it.
I am aware that it is possible to write multi-line step argument in Gherking, like this:
Given a blog post named "Random" with Markdown body
"""
Some Title, Eh?
==============
Here is the first paragraph of my blog post. Lorem ipsum dolor sit amet,
consectetur adipiscing elit.
"""
My question is about writing single step on multiple lines, something like this:
Given that Gherkin language allows me to write my step definitions \
on multiple lines
Then my test cases would be easier to read :)
In the example above I used '\' as line continuation symbol. BTW, I tried the example above and got parser error.