{% for lang in site.data.xpath_funs.langs %}
### {{ lang.name }}
{{ lang.name }} functions are in the namespace `{{ lang.ns }}`.
{% for fun in lang.funs %}
{{ fun.name }}
{{ fun.description }} {{ fun.notes }}
{% unless fun.parameters.size == 0 %}
Parameters
{% for param in fun.parameters %}
{{ param.name }} |
{{ param.description }} |
{% endfor %}
{% endunless %}
{% unless fun.examples.size == 0 %}
Examples
{% for example in fun.examples %}
{{ example.code }} |
{{ example.description }} |
{% endfor %}
{% endunless %}
{% endfor %}
{% endfor %}