| # SDK tools |
| |
| {% set tocmeta | yamlloads %} |
| {% include "docs/reference/tools/sdk/_toc.yaml" %} |
| {% endset %} |
| |
| Fuchsia has the following SDK tools: |
| |
| {% for item in tocmeta.toc %} |
| {% if item.path and item.title != "Overview" %} |
| <li><a href="{{ item.path }}">{{ item.title }}</a></li> |
| {% elif item.section %} |
| <h2>{{ item.title }}</h2> |
| <ul> |
| {% for sectionItem in item.section %} |
| {% if sectionItem.path %} |
| <li><a href="{{ sectionItem.path }}">{{ sectionItem.title }}</a></li> |
| {% endif %} |
| {% endfor %} |
| </ul> |
| {% endif %} |
| {% endfor %} |