{% include "shared/_head.html.j2" %}
{% include "shared/_navbar.html.j2" %}
Contents
{% for section in sections %}
{{section.title}}
{% endfor %}
{{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 %}
jq '{{ example.program }}'
Input
{{ example.input }}
{% if not example.output[0] %}
Output
none
{% endif %} {% for output in example.output %}
{% if loop.first %}
Output
{% else %}
{% endif %}
{{ output }}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% include "shared/_footer.html.j2" %}