2016-07-28 10:29:03 -04:00
|
|
|
[{% for module, items in doc.data %}
|
|
|
|
{% for item in items %}
|
|
|
|
{
|
|
|
|
"title": "{$ item.title $}",
|
|
|
|
"path": "{$ item.exportDoc.path $}",
|
|
|
|
"docType": "{$ item.docType $}",
|
|
|
|
"stability": "{$ item.stability $}",
|
|
|
|
"secure": "{$ item.security $}",
|
2016-09-13 07:09:04 -04:00
|
|
|
"howToUse": "{$ item.howToUse | replace('"','\\"') $}",
|
2016-07-28 10:29:03 -04:00
|
|
|
"whatItDoes": {% if item.whatItDoes %}"Exists"{% else %}"Not Done"{% endif %},
|
|
|
|
"barrel" : "{$ module | replace("/index", "") $}"
|
|
|
|
}{% if not loop.last %},{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
]
|