{% if self.opts.css then %} {{ self.opts.css }} {% else %} {% end %} {{self.opts.head or ''}}
{{self.header}}
{% for _, section in ipairs(self.sections) do %}

{{section.title}}

{% for _, group in ipairs(section) do %} {% if group.class then %}

{{group.name}}

{% elseif group.fun then %}

:{{group.fun}} {{group.params}}

{% elseif group.class_fun then %}

.{{group.class_fun}} {{group.params}}

{% elseif group.global_fun then %}

{{group.global_fun}} {{group.params}}

{% elseif group.tparam then %}

{{group.tparam}} = {{group.params}}

{% elseif group.lparam then %}

{{group.lparam}}

{% elseif group.const then %}

{{group.const}}

{% elseif group.param == '' then %}

{{group.params}}

{% elseif group.param then %}

.{{group.param}} = {{group.params}}

{% end %} {% for _, para in ipairs(group) do %} {{private.paraToHtml(self, para)}} {% end %} {% end %}
{% end %}