11 lines
295 B
Markdown
11 lines
295 B
Markdown
# Advanced Usage
|
|
|
|
{% for section in book.chapters["advanced/advanced.md"].sections %}
|
|
* [**{{section.name}}**](../{{section.path}})
|
|
{% if section["sections"] %}{% for subsection in section.sections %}
|
|
* [**{{ subsection.name }}**]({{ subsection.path }})
|
|
{% endfor %}{% endif %}
|
|
{% endfor %}
|
|
|
|
|