summaryrefslogtreecommitdiff
path: root/giscanner/doctemplates/devdocs/Gjs/enum.tmpl
blob: a66cbefaa6f288c24b2bf519426b17d07b82452c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%inherit file="base.tmpl"/>
<ul>
% for m in node.members:
  <li>
    <code>
      <span class="entry" id="${formatter.make_anchor(m)}">
        ${m.name.upper()}
      </span>
      = ${m.value}
    </code>
    % if m.doc:
      &mdash; ${formatter.format_inline(node, m.doc)}
    % endif
  </li>
% endfor
</ul>