@@ -59,37 +59,27 @@ <h3>Pair: <a href="/{{ function[type_name].pair }}">{{ function[type_name].pair
59
59
{% for type_name in ['shared', 'server', 'client'] %}
60
60
{% if function[type_name] and function[type_name].meta %}
61
61
{% if function[type_name].meta %}
62
- < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid #aaa; border-radius: 5px; background-color: rgba(255, 255, 255, 0.1); ">
63
- < ul >
64
- {% for meta_item in function[type_name].meta %}
65
- {% if meta_item.needs_checking %}
66
- < li > < p > < strong > Needs checking:</ strong > {{ meta_item.needs_checking }}</ p > </ li >
62
+ {% for meta_item in function[type_name].meta %}
63
+ < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid #aaa; border-radius: 5px; background-color: rgba(255, 255, 255, 0.1); ">
64
+ {% if meta_item.needs_checking %}
65
+ < p > < strong > Needs checking:</ strong > {{ meta_item.needs_checking }}</ p >
67
66
{% endif %}
68
- {% endfor %}
69
- </ ul >
70
- </ div >
67
+ </ div >
68
+ {% endfor %}
71
69
{% endif %}
72
70
{% endif %}
73
71
{% endfor %}
74
72
75
73
<!-- Issues -->
76
74
{% for type_name in ['shared', 'client', 'server'] %}
77
75
{% if function[type_name] %}
78
-
79
76
{% if function[type_name].issues %}
77
+ {% for issue in function[type_name].issues %}
80
78
< div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; background-color: rgba(255, 255, 0, 0.1); ">
81
- < ul >
82
- {% for issue in function[type_name].issues %}
83
- < li >
84
- < a target ="_blank " href ="https://github.com/multitheftauto/mtasa-blue/issues/{{ issue.id }} ">
85
- Issue #{{ issue.id }} (mtasa-blue)
86
- </ a > : {{ issue.description_html }}
87
- </ li >
88
- {% endfor %}
89
- </ ul >
79
+ < p > < a target ="_blank " href ="https://github.com/multitheftauto/mtasa-blue/issues/{{ issue.id }} "> Issue #{{ issue.id }} (mtasa-blue):</ a > {{ issue.description_html }}</ p >
90
80
</ div >
81
+ {% endfor %}
91
82
{% endif %}
92
-
93
83
{% endif %}
94
84
{% endfor %}
95
85
@@ -98,20 +88,18 @@ <h3>Pair: <a href="/{{ function[type_name].pair }}">{{ function[type_name].pair
98
88
{% if function[type_name] %}
99
89
100
90
{% if function[type_name].notes %}
101
- < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; background-color: rgba(0, 255, 0, 0.1); ">
102
- < ul >
103
- {% for note in function[type_name].notes %}
104
- < li > {{ note }}</ li >
105
- {% endfor %}
106
- </ ul >
107
- </ div >
91
+ {% for note in function[type_name].notes %}
92
+ < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; background-color: rgba(0, 255, 0, 0.1); ">
93
+ < p > {{ note }}</ p >
94
+ </ div >
95
+ {% endfor %}
108
96
{% endif %}
109
-
110
97
{% endif %}
111
98
{% endfor %}
112
99
113
100
<!-- Syntax -->
114
101
< h2 id ="syntax "> Syntax < a href ="#syntax "> < i class ="fa-solid fa-link "> </ i > </ a > </ h2 >
102
+
115
103
{% if function.syntaxes.single %}
116
104
{% set syntax = function.syntaxes.single %}
117
105
< div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; ">
@@ -122,7 +110,7 @@ <h2 id="syntax">Syntax <a href="#syntax"><i class="fa-solid fa-link"></i></a></h
122
110
< h3 > Required arguments:</ h3 >
123
111
< ul >
124
112
{% for item in syntax.arguments.required %}
125
- < li > {{ item.type }} < strong > {{ item.name }}</ strong > : {{ item.description_html }}</ li >
113
+ < li > {{ item.type }} < strong > {{ item.name }}</ strong > : {{ item.description_html }}</ li >
126
114
{% endfor %}
127
115
</ ul >
128
116
{% endif %}
@@ -131,7 +119,7 @@ <h3>Required arguments:</h3>
131
119
< h3 > Optional arguments:</ h3 >
132
120
< ul >
133
121
{% for item in syntax.arguments.optional %}
134
- < li > {{ item.type }} < strong > {{ item.name }}</ strong > (default: < em > {{ item.default }}</ em > ) : {{ item.description_html }}</ li >
122
+ < li > {{ item.type }} < strong > {{ item.name }}</ strong > (default: < em > {{ item.default }}</ em > ): {{ item.description_html }}</ li >
135
123
{% endfor %}
136
124
</ ul >
137
125
{% endif %}
@@ -145,6 +133,8 @@ <h3>Returns:</h3>
145
133
< li > {{ item.type }} {{ item.name }}</ li >
146
134
{% endfor %}
147
135
</ ul >
136
+
137
+ </ div >
148
138
{% else %}
149
139
{% for type_name in ['server', 'client'] %}
150
140
{% set syntax = function.syntaxes[type_name] %}
@@ -158,7 +148,7 @@ <h3 style="color: {{ type_colors[type_name] }};">{{ type_name|capitalize }}:</h3
158
148
< h4 > Required arguments:</ h4 >
159
149
< ul >
160
150
{% for item in syntax.arguments.required %}
161
- < li > {{ item.type }} < strong > {{ item.name }}</ strong > : {{ item.description_html }}</ li >
151
+ < li > {{ item.type }} < strong > {{ item.name }}</ strong > : {{ item.description_html }}</ li >
162
152
{% endfor %}
163
153
</ ul >
164
154
{% endif %}
@@ -167,7 +157,7 @@ <h4>Required arguments:</h4>
167
157
< h4 > Optional arguments:</ h4 >
168
158
< ul >
169
159
{% for item in syntax.arguments.optional %}
170
- < li > {{ item.type }} < strong > {{ item.name }}</ strong > (default: < em > {{ item.default }}</ em > ) : {{ item.description_html }}</ li >
160
+ < li > {{ item.type }} < strong > {{ item.name }}</ strong > (default: < em > {{ item.default }}</ em > ): {{ item.description_html }}</ li >
171
161
{% endfor %}
172
162
</ ul >
173
163
{% endif %}
@@ -185,35 +175,37 @@ <h4>Returns:</h4>
185
175
{% endif %}
186
176
{% endfor %}
187
177
{% endif %}
188
- <!-- OOP Syntax -->
189
- {% for type_name in ['shared', 'client', 'server'] %}
190
- {% if function[type_name] %}
191
- {% if function[type_name].oop %}
192
- < h3 > OOP syntax: < a href ="/OOP_Introduction " > < i class ="fa-regular fa-circle-question "> </ i > </ a > </ h3 >
193
- {% if function[type_name].oop.note %}
194
- < p > {{ function[type_name].oop.note }}</ p >
178
+
179
+
180
+
181
+ <!-- OOP Syntax -->
182
+ {% for type_name in ['shared', 'client', 'server'] %}
183
+ {% if function[type_name] %}
184
+ {% if function[type_name].oop %}
185
+ < h2 > OOP syntax < a href ="/OOP_Introduction " > < i class ="fa-regular fa-circle-question "> </ i > </ a > </ h2 >
186
+
187
+ < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; ">
188
+
189
+ {% if function[type_name].oop.note %}
190
+ < p > {{ function[type_name].oop.note }}</ p >
191
+ {% endif %}
192
+ <!-- Method or constructor -->
193
+ {% if function[type_name].oop.constructor %}
194
+ < p > < strong > Constructor:</ strong > < a href ="/{{ function[type_name].oop.constructor|lower }} "> {{ function[type_name].oop.constructor|capitalize }}</ a > (...)</ p >
195
+ {% else %}
196
+ < p > < strong > Method:</ strong >
197
+ {% if function[type_name].oop.static %}< a href ="/{{ function[type_name].oop.entity|capitalize }} "> {{ function[type_name].oop.entity|capitalize }}</ a > .{{ function[type_name].oop.method }}(...)
198
+ {% else %}< a href ="/{{ function[type_name].oop.entity|lower }} "> {{ function[type_name].oop.entity }}</ a > :{{ function[type_name].oop.method }}(...)
199
+ {% endif %}</ p >
200
+ {% if function[type_name].oop.variable %}
201
+ < p > < strong > Variable:</ strong > < a href ="/{{ function[type_name].oop.entity|lower }} "> {{ function[type_name].oop.entity }}</ a > .{{ function[type_name].oop.variable }}</ p >
195
202
{% endif %}
196
- <!-- Method or constructor -->
197
- < ul >
198
- {% if function[type_name].oop.constructor %}
199
- < li > < strong > Constructor:</ strong > < a href ="/{{ function[type_name].oop.constructor|lower }} "> {{ function[type_name].oop.constructor|capitalize }}</ a > (...)</ li >
200
- {% else %}
201
- {% if function[type_name].oop.static %}
202
- < li > < strong > Method:</ strong > < a href ="/{{ function[type_name].oop.entity|capitalize }} "> {{ function[type_name].oop.entity|capitalize }}</ a > .{{ function[type_name].oop.method }}(...)</ li >
203
- {% else %}
204
- < li > < strong > Method:</ strong > < a href ="/{{ function[type_name].oop.entity|lower }} "> {{ function[type_name].oop.entity }}</ a > :{{ function[type_name].oop.method }}(...)</ li >
205
- {% endif %}
206
- {% if function[type_name].oop.variable %}
207
- < li > < strong > Variable:</ strong > < a href ="/{{ function[type_name].oop.entity|lower }} "> {{ function[type_name].oop.entity }}</ a > .{{ function[type_name].oop.variable }}</ li >
208
- {% endif %}
209
- {% endif %}
210
- </ ul >
211
203
{% endif %}
212
- {% endif %}
213
- {% endfor %}
214
- {% if function.syntaxes.single %}
215
- </ div >
216
- {% endif %}
204
+
205
+ </ div >
206
+ {% endif %}
207
+ {% endif %}
208
+ {% endfor %}
217
209
218
210
<!-- Preview Images -->
219
211
{% for type_name in ['shared', 'client', 'server'] %}
@@ -227,7 +219,6 @@ <h3>OOP syntax: <a href="/OOP_Introduction" ><i class="fa-regular fa-circle-ques
227
219
{% endif %}
228
220
< img style ="max-height: 150px; " src ="{{ image.path_html }} ">
229
221
{% endfor %}
230
- </ ul >
231
222
</ div >
232
223
{% endif %}
233
224
{% endif %}
0 commit comments