blob: 7a5cf38c2d351c50fb26c71b1748a50bc22bf204 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | {# it's probably a terrible idea to render JSON by hand... #}
{
    "section": "{{ section.section }}",
    "filename": "{{ section.filename }}",
    "description": "{{ section.description }}",
    "modifiers": [
        {% for modifier in section.modifiers %}
            ["{{ modifier.name }}","{{ modifier.description }}"]{% if not forloop.last %},{% endif %}
        {% endfor %}
    ],
    "example_html": "{{ section.example|escapejs }}",
    "modifier_examples": [
        {% for modifier in section.modifiers %}
            ["{{ modifier.name }}","{{ modifier.example|escapejs }}"]{% if not forloop.last %},{% endif %}
        {% endfor %}
    ]
}
 |