removed inline documentation (#624)

This commit is contained in:
Kevin Papst
2019-03-11 15:10:51 +01:00
committed by GitHub
parent 3ac72a5c89
commit 0f6334314e
43 changed files with 17 additions and 2235 deletions

View File

@@ -1,25 +0,0 @@
{% extends 'base.html.twig' %}
{% block page_title %}{{ 'help.title'|trans }}{% endblock %}
{% block page_subtitle %}{{ 'help.subtitle'|trans }}{% endblock %}
{% block main %}
{% set replacer = {
'<table>': '<table class="table">',
'href="../../': 'target="_blank" href="'~github~'blob/master/',
('href="' ~ github): 'target="_blank" href="'~github
} %}
<div class="box">
{% if chapter != 'README' %}
<div class="box-header with-border">
<a href="{{ path('help') }}">{{ 'action.back'|trans }}</a>
</div>
{% endif %}
<div class="box-body markdown-body">
{{ documentation|md2html|replace(replacer)|raw }}
</div>
</div>
{% endblock %}