Tries to extract parameters from part description and comment.

This commit is contained in:
Jan Böhmer 2020-03-24 16:57:02 +01:00
parent 2899db0206
commit b66aabd153
4 changed files with 187 additions and 2 deletions

View file

@ -4,4 +4,14 @@
{% for name, parameters in part.groupedParameters %}
{% if name is not empty %}<h5 class="mt-1">{{ name }}</h5>{% endif %}
{{ helper.parameters_table(parameters) }}
{% endfor %}
{% endfor %}
{% if description_params is not empty %}
<h5 class="mt-1">{% trans %}parameters.extracted_from_description{% endtrans %}</h5>
{{ helper.parameters_table(description_params) }}
{% endif %}
{% if comment_params is not empty %}
<h5 class="mt-1">{% trans %}parameters.auto_extracted_from_comment{% endtrans %}</h5>
{{ helper.parameters_table(comment_params) }}
{% endif %}