{% extends "Skeleton.html" %} {% load DjangoHelpers %} {% block cssLinks %} {% endblock %} {% block title %}{{title}}{% endblock %} {% block body %}

{{title}}

{% for lang in doc.languages %} {% endfor %} {% for documentation in doc.documentation %} {% include "GrammarTemplates/ToCRowBuilder.html" with currentRow=documentation doc=doc%} {% endfor %}
Rule Rule Type{{lang}}
{{doc.howToReadDoc.title}}

{{doc.howToReadDoc.title}}


{{doc.howToReadDoc.desc|safe}}
{% for entry in doc.howToReadDoc.entries %}

{{entry.title|safe}}

{{entry.desc|safe}}
{% for ex in entry.grammarExamples %} {% if ex.type == "pre" %}
{{ex.text|safe}}
{% elif ex.type == "svg" %} {{ex.text|safe}} {% endif %} {% endfor %} {% endfor %}
{% for documentation in doc.documentation %} {% include "GrammarTemplates/RuleDispatcher.html" with documentation=documentation %} {% endfor %} {% endblock %}