mirror of
https://github.com/wez/wezterm.git
synced 2025-01-05 04:05:42 +03:00
18 lines
412 B
Markdown
18 lines
412 B
Markdown
---
|
|
title: Full Table of Contents
|
|
layout: notoc
|
|
---
|
|
|
|
# Full Table of Contents
|
|
|
|
<ul>
|
|
{% for page in site.html_pages %}
|
|
{% if page.url contains "toc.html" %}
|
|
{% else %}
|
|
{% assign p_url = page.url | absolute_url %}
|
|
<li><a href="{{ p_url }}">{{ page.title }}</a></li>
|
|
{% include toc.html baseurl=p_url sanitize=true html=page.content class="toc" %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|