Features
{{feature.name}}
{{ feature.description | parse | relevel:2 | markdown }}
{% for scenario in feature.elements %}
{{scenario.name}}
{{ scenario.description | parse | relevel:3 | markdown }}
{% unless scenario.steps.empty %}
Steps
-
{% for step in scenario.steps %}
-
{{step.keyword | strip}} {{step.name}}
{% if step.doc_string %} {{ step.doc_string.value | highlight: step.doc_string.content_type }} {% endif %} {% if step.rows %}{% for cell in step.rows[0].cells %} {% for row in step.rows %} {% unless forloop.first %}{{ cell }} {% endfor %}{% for cell in row.cells %} {% endunless %} {% endfor %}{{ cell | escape_once }} {% endfor %}
{% endfor %}