strune 0.1.2

A simple, directional knowledge structure library for building linked references and word books
Documentation
1
2
3
4
5
6
7
{% macro input(nodes) %}
<ul class="link-nodes_list">
    {% for node in nodes %}
    <li class="link-nodes_item"><a href="{{ node.link }}.html">{{ node.label }}</a></li>
    {% endfor %}
</ul>
{% endmacro %}