Skip to content

Commit

Permalink
Merge pull request #62 from reMarkable/fix_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubAndrysek committed Jul 13, 2023
2 parents ec3438a + 0d2d074 commit 9a426ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mkdoxy/templates/modules.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9a426ce

Please sign in to comment.