|
52 | 52 | {%- set traits = traits|merge({ (name): (name|split('\\')|last) }) -%} |
53 | 53 | {% endfor %} |
54 | 54 |
|
55 | | -| Name | {{ class.name }} | |
56 | | -| ----:|:---------------- | |
57 | | -{% if class.parent %} |
58 | | - **Extends** | [{{ class.parent.namespace|trim('\\') -}}\\<span style="font-weight: bold;">{{ class.parent.name }}</span>](/api/classes.html# |
59 | | - {{- class.parent|trim('\\')|lower|replace('\\', '-') }}) |
60 | | -{% endif %} |
61 | | -{% for iname, ishort in interfaces if ishort is not empty %} |
62 | | -{% if loop.first -%} |
63 | | -**Implements** | |
64 | | -{%- endif -%} |
65 | | - [{{ iname|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ ishort }}</span>](/api/interfaces.html#{{ iname|lower|replace('\\', '-') }}) {{- '<br />' -}} |
66 | | -{% endfor %} |
67 | | - |
68 | | -{% for tName, tShort in traits if tShort is not empty %} |
69 | | -{% if loop.first -%} |
70 | | -**Uses** | |
71 | | -{%- endif -%} |
72 | | - [{{ tName|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ tShort }}</span>](/api/traits.html#{{ tName|trim('\\')|lower|replace('\\', '-') }}) {{- '<br />' -}} |
73 | | -{% endfor %} |
74 | | - |
75 | | -{% for author in class.tags.author %} |
76 | | -{% if loop.first %}- **Authors:**{% endif %} |
| 55 | +| | | |
| 56 | +| ---:|:--- | |
| 57 | +| **Extends** | |
| 58 | + {%- if class.parent -%} |
| 59 | + [{{ class.parent.namespace|trim('\\') -}}\\<span style="font-weight: bold;">{{ class.parent.name }}</span>](/api/classes.html# |
| 60 | + {{- class.parent|trim('\\')|lower|replace('\\', '-') }}) |
| 61 | + {%- else -%} |
| 62 | + _Nothing_ |
| 63 | + {%- endif -%} |
| 64 | +| |
| 65 | +| **Implements** | |
| 66 | + {%- for iname, ishort in interfaces if ishort is not empty -%} |
| 67 | + [{{ iname|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ ishort }}</span>](/api/interfaces.html# |
| 68 | + {{- iname|lower|replace('\\', '-') }}) <br /> |
| 69 | + {%- else -%} |
| 70 | + _Nothing_ |
| 71 | + {%- endfor -%} |
| 72 | +| |
| 73 | +| **Uses** | |
| 74 | + {%- for tName, tShort in traits if tShort is not empty -%} |
| 75 | + [{{ tName|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ tShort }}</span>](/api/traits.html# |
| 76 | + {{- tName|trim('\\')|lower|replace('\\', '-') }}) <br /> |
| 77 | + {%- else -%} |
| 78 | + _Nothing_ |
| 79 | + {%- endfor -%} |
| 80 | +| |
77 | 81 |
|
78 | | - - {{ author.description }} |
79 | | -{%- endfor %} |
| 82 | +| | | |
| 83 | +|:---:| --- | |
| 84 | +| **Authors** | |
| 85 | + {%- for author in class.tags.author -%} |
| 86 | + {{ author.description }} <br /> |
| 87 | + {%- endfor -%} |
| 88 | +| |
80 | 89 |
|
81 | 90 |
|
82 | 91 | {% if class.tags.see is not empty or class.tags.link is not empty %} |
|
0 commit comments