2018-06-09 08:40:44 -04:00
|
|
|
{% import "lib/githubLinks.html" as github -%}
|
2018-06-08 11:41:30 -04:00
|
|
|
|
2018-06-08 12:13:07 -04:00
|
|
|
{% set relativePath = doc.fileInfo.relativePath %}
|
2017-04-19 04:27:45 -04:00
|
|
|
{% if doc.title %}{$ ('# ' + doc.title.trim()) | marked $}{% endif %}
|
2018-10-17 08:49:28 -04:00
|
|
|
{% if '/' in relativePath or 'docs.md' in relativePath %}
|
2018-06-09 08:40:44 -04:00
|
|
|
<div class="github-links">
|
|
|
|
{$ github.githubEditLink(doc, versionInfo) $}
|
2018-06-08 12:13:07 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-10-17 08:49:28 -04:00
|
|
|
{% block content %}
|
2017-04-16 15:52:04 -04:00
|
|
|
<div class="content">
|
|
|
|
{$ doc.description | marked $}
|
2018-06-09 08:40:44 -04:00
|
|
|
</div>
|
2018-10-17 08:49:28 -04:00
|
|
|
{% endblock %}
|