{%- for item in styleguides %} {%- if item.name == guide.name %}
{{item.name|title}}
{%- else %}
{{item.name|title}}
{%- endif %} {%- endfor %}
{%- for section in guide.sections %}
{{section.name}}
{{section.title}}
{{section.description|markdown}}
{%- for modifier in section.modifiers %}
{{modifier.name}}
- {{modifier.description}}
{%- endfor %}
{%- for example in section.examples %}
{%- if example.name %}
{{example.name}}
{%- endif %} {{example.code}}
{%- endfor %}
{{section.html|highlight('html')}}
{%- endfor %}