{{title}}

{{subtitle}}

{% unless authors.empty %}{% endunless %} {% if logo %}{% endif %}

Features

    {% for feature in contents %}
  1. {{feature.name}}
      {% for scenario in feature.elements %}
    1. {{scenario.name}}
    2. {% endfor %}
  2. {% endfor %}
{% for feature in contents %}

{{feature.name}}

{% unless feature.description == '' %}

{{feature.name}}

{{ feature.description | parse | relevel:2 | markdown }}
{% endunless %} {% for scenario in feature.elements %}

{{scenario.name}}

{{ scenario.description | parse | relevel:3 | markdown }}
    {% for step in scenario.steps %}
  1. {{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 %} {% endfor %} {% for row in step.rows %} {% unless forloop.first %} {% for cell in row.cells %} {% endfor %} {% endunless %} {% endfor %}
    {{ cell }}
    {{ cell | escape_once }}
    {% endif %}
  2. {% endfor %}
{% endfor %} {% endfor %}