Categories:
{% for tag, tag_with_spaces in all_tags %}
{{tag_with_spaces}}
{% endfor %}
All
{{show_initial_tag}}
Example
{% for e in examples %}
{{ e.example.title }}
{{ e.example.description.strip()|safe }}
{% if admin or not e.example.filename %}
Edit
Clone
Delete
{% if not (admin and e.example.filename) %}
Vote
{% endif %}
{% elif not admin and e.example.filename and False %}
Clone
{% endif %}
{{ e.example.source.strip() }}
{% if admin %}
id: {{ e.example.id }}
{% if e.example.filename %}
filename: {{ e.example.filename }}
{% endif %}
{% if e.example.sortnum %}
sort num: {{ e.example.sortnum }}
{% endif %}
{% if e.example.tags %}
tags: {{ e.example.tags }}
{% endif %}
{% endif %}
Load in Converter Editor
{% endfor %}
{% if False and not admin %}
Warning: Any examples you create will be purged periodically.
To help the community and make new examples permanent, click the vote link next to any user created examples - including your own.
{% endif %}
{% endblock %}