--- title: Happy Pi Day! ---
{% assign sorted_collections = site.collections | sort: "position_number" %} {% for collection in sorted_collections %} {% assign sorted_docs = collection.docs | sort: "position_number" %} {% for doc in sorted_docs %}

{{ doc.title }} {% if doc.type %} {% endif %} Edit

{% if doc.description %}

{{ doc.description }}

{% endif %} {% if doc.parameters and doc.parameters[0].name %}
Parameters
{% for parameter in doc.parameters %}
{{ parameter.name }}
{{ parameter.content }}
{% endfor %}
{% endif %} {{ doc.content | markdownify | replace: "
", "
Parameters
" }} {% if doc.left_code_blocks and doc.left_code_blocks[0].code_block %}
{% for block in doc.left_code_blocks %} {% include syntax-highlight.html block=block %} {% endfor %}
{% endif %}
{% if doc.right_code_blocks and doc.right_code_blocks[0].code_block %}
{% for block in doc.right_code_blocks %} {% include syntax-highlight.html block=block %} {% endfor %}
{% endif %}
{% endfor %} {% endfor %}