Skip to content

Commit

Permalink
Deployed 32732bc with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
e3rd committed Sep 10, 2024
1 parent 34dbaea commit 4028c8a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions _templates/dataclass.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
TODO
{%- extends "default/members.html" -%}

{%- block attributes %}
{%- if doc.attributes -%}
<h3>DataClass Attributes</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
{%- for attribute in doc.attributes -%}
<tr>
<td>{{ attribute.name }}</td>
<td>{{ attribute.annotation }}</td>
<td>{{ attribute.docstring }}</td>
</tr>
{%- endfor -%}
</tbody>
</table>
{%- endif -%}
{%- endblock %}

0 comments on commit 4028c8a

Please sign in to comment.