|
57 | 57 | | **Extends** | |
58 | 58 | {%- if class.parent -%} |
59 | 59 | [{{ class.parent.namespace|trim('\\') -}}\\<span style="font-weight: bold;">{{ class.parent.name }}</span>](/api/classes.html# |
60 | | - {{- class.parent|trim('\\')|lower|replace('\\', '-') }}) |
| 60 | + {{- class.parent|trim('\\')|lower|replace({'\\': '-'}) }}) |
61 | 61 | {%- else -%} |
62 | 62 | _Nothing_ |
63 | 63 | {%- endif -%} |
64 | 64 | | |
65 | 65 | | **Implements** | |
66 | 66 | {%- for iname, ishort in interfaces if ishort is not empty -%} |
67 | 67 | [{{ iname|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ ishort }}</span>](/api/interfaces.html# |
68 | | - {{- iname|lower|replace('\\', '-') }}) <br /> |
| 68 | + {{- iname|lower|replace({'\\': '-'}) }}) <br /> |
69 | 69 | {%- else -%} |
70 | 70 | _Nothing_ |
71 | 71 | {%- endfor -%} |
72 | 72 | | |
73 | 73 | | **Uses** | |
74 | 74 | {%- for tName, tShort in traits if tShort is not empty -%} |
75 | 75 | [{{ tName|trim('\\')|split('\\')|slice(0, -1)|join('\\') }}\\<span style="font-weight: bold;">{{ tShort }}</span>](/api/traits.html# |
76 | | - {{- tName|trim('\\')|lower|replace('\\', '-') }}) <br /> |
| 76 | + {{- tName|trim('\\')|lower|replace({'\\': '-'}) }}) <br /> |
77 | 77 | {%- else -%} |
78 | 78 | _Nothing_ |
79 | 79 | {%- endfor -%} |
|
111 | 111 | {%- endif %} |
112 | 112 |
|
113 | 113 | - [{{ method.parent.namespace|trim('\\') -}}\\<span style="font-weight: bold;">{{ method.parent.name }}</span>](/api/{{ parent_location }}.html# |
114 | | - {{- method.parent|trim('\\')|lower|replace('\\', '-') -}} |
| 114 | + {{- method.parent|trim('\\')|lower|replace({'\\': '-'}) -}} |
115 | 115 | ):: |
116 | 116 | {{- include('anchor-link-method.md.twig', { text: method.name ~ '()' }) -}} |
117 | 117 | {{ include('badges.md.twig', { elem: method }) }} |
|
141 | 141 | {%- endif %} |
142 | 142 |
|
143 | 143 | - [{{ property.parent.namespace|trim('\\') -}}\\<span style="font-weight: bold;">{{ property.parent.name }}</span>](/api/{{ parent_location }}.html# |
144 | | - {{- property.parent|trim('\\')|lower|replace('\\', '-') -}} |
| 144 | + {{- property.parent|trim('\\')|lower|replace({'\\': '-'}) -}} |
145 | 145 | ):: |
146 | 146 | {{- include('anchor-link-property.md.twig', { text: '$' ~ property.name }) -}} |
147 | 147 | {{ include('badges.md.twig', { elem: property }) }} |
|
0 commit comments