{% include "shared/_head.html.j2" %} {% include "shared/_navbar.html.j2" %}

{{headline}}

{{ history | markdownify }} {{ body | markdownify }} {% for section in sections %}

{{section.title}}

{{ (section.body | markdownify) if section.body }} {% for entry in section.entries %}

{{entry.title | markdownify | no_paragraph }} {% if entry.subtitle %}{{entry.subtitle}}{% endif %}

{{entry.body | markdownify}} {% if entry.examples %}
{% set exampleID = unique_id() %} {% if entry.examples | length > 1 %}Examples{%else%}Example{%endif%}
{% for example in entry.examples %} {% if not example.output[0] %} {% endif %} {% for output in example.output %} {% if loop.first %} {% else %} {% endif %} {% endfor %}
jq '{{ example.program }}'
Input{{ example.input }}
Output none
Output{{ output }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% include "shared/_footer.html.j2" %}