{% include "shared/head" %} {% include "shared/header" %}

{{headline}}

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

{{section.title}}

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

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

{{entry.body | markdownify}} {% if entry.examples %}
{% capture exampleID %}{{ "" | unique }}{% endcapture %} {% if entry.examples[1] %}Examples{%else%}Example{%endif%}
{% for example in entry.examples %} {% unless example.output[0] %} {% endunless %} {% for output in example.output %} {% if forloop.index == 1 %} {% else %} {% endif %} {% endfor %}
jq '{{example.program}}'
Input{{example.input}}
Output none
Output{{output}}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% include "shared/footer" %}