12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <%- head_tpl({
- site_title = site_title,
- title = "Schema: " .. schema.attr.id,
- webroot = webroot,
- }) %>
- </head>
- <body>
- <main>
- <h1 class="title">Schema: <code><%= schema.attr.id %></code></h1>
- <section id="schema_attr">
- <h2>Attributes</h1>
- <dl class="schema_md">
- <% for k, v in pairs(schema.attr) do %>
- <dt><%= k %></dt>
- <dd><%= v %></dd>
- <% end %>
- </dl>
- </section>
- <section id="schema_prop">
- <h2>properties</h1>
- <dl class="schema_md">
- <% for _, prop in ipairs(schema.properties) do %>
- <% local k, def = table.unpack(prop) %>
- <dt><%= k %></dt>
- <dd>
- <dl>
- <% for def_n, def_v in pairs(def) do %>
- <dt><%= def_n %></dt>
- <% if type(def_v) == "table" then %>
- <% for def_kk in pairs(def_v) do %>
- <dd><%= def_kk %></dd>
- <% end %>
- <% for _, def_vv in ipairs(def_v) do %>
- <dd><%= def_vv %></dd>
- <% end %>
- <% else %>
- <dd><%= def_v %></dd>
- <%end %>
- <% end %>
- </dl>
- </dd>
- <% end %>
- </dl>
- </section>
- </main>
- <footer></footer>
- </body>
- </html>
|