diff --git a/mkdoxy/templates/modules.jinja2 b/mkdoxy/templates/modules.jinja2 index eb8a530d..0e01c97f 100644 --- a/mkdoxy/templates/modules.jinja2 +++ b/mkdoxy/templates/modules.jinja2 @@ -4,12 +4,12 @@ {% if nodes|length > 0 %} Here is a list of all modules: {% for node in nodes recursive %} - {% if node.is_group %} - * [**{{node.title}}**]({{node.url}}) {{node.brief}} - {% if node.has_children %} - {{- loop(node.children)|indent(4, true) }} - {% endif %} - {% endif -%} +{% if node.is_group %} +* [**{{node.title}}**]({{node.url}}) {{node.brief}} +{% if node.has_children %} + {{- loop(node.children)|indent(4, true) }} +{% endif %} +{% endif -%} {% endfor %} {% else %} No modules found.