{% include "shared/head" %}
{% include "shared/navbar" %}
Contents
{% for section in sections %}
{{section.title}}
{% endfor %}
{{headline}}
{{ history | markdownify }} {{ body | markdownify }} {% for section in sections %}
{{section.title}}
{{section.body | markdownify}} {% for entry in section.entries %}
{{entry.title | markdownify | no_paragraph}} {% 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 %}
jq '{{example.program | escape}}'
Input
{{example.input | escape}}
{% unless example.output[0] %}
Output
none
{% endunless %} {% for output in example.output %}
{% if forloop.index == 1 %}
Output
{% else %}
{% endif %}
{{output | escape}}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% include "shared/footer" %}