@@ -114,7 +114,7 @@ <h3>Pair: <a href="/{{ function[type_name].pair }}">{{ function[type_name].pair
114
114
< h2 id ="syntax "> Syntax < a href ="#syntax "> < i class ="fa-solid fa-link "> </ i > </ a > </ h2 >
115
115
{% if function.syntaxes.single %}
116
116
{% set syntax = function.syntaxes.single %}
117
- < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; ">
117
+ < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ info_color }}; border-radius: 5px; ">
118
118
119
119
< pre > < code class ="language-lua "> {{ syntax.returns.values_type or 'void' }} {{ function.name }} ( {% for parameter in syntax.arguments.required %}{{ parameter.type }} {{ parameter.name }}{% if not loop.last %}, {% endif %}{% endfor %}{% for parameter in syntax.arguments.optional %}{% if syntax.arguments.required %}, {% endif %}{% if loop.first %}[ {% endif %}{{ parameter.type }} {{ parameter.name }} = {{ parameter.default }}{% if loop.last %} ]{% endif %}{% endfor %} )</ code > </ pre >
120
120
@@ -145,12 +145,11 @@ <h3>Returns:</h3>
145
145
< li > {{ item.type }} {{ item.name }}</ li >
146
146
{% endfor %}
147
147
</ ul >
148
-
149
148
{% else %}
150
149
{% for type_name in ['server', 'client'] %}
151
150
{% set syntax = function.syntaxes[type_name] %}
152
151
{% if syntax %}
153
- < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ type_colors[type_name] }}; border-radius: 5px; ">
152
+ < div style ="padding-left: 1em; margin-top: 1em; border: 1px solid {{ type_colors[type_name] }}; border-radius: 5px; ">
154
153
< h3 style ="color: {{ type_colors[type_name] }}; "> {{ type_name|capitalize }}:</ h3 >
155
154
156
155
< pre > < code class ="language-lua "> {{ syntax.returns.values_type or 'void' }} {{ function.name }} ( {% for parameter in syntax.arguments.required %}{{ parameter.type }} {{ parameter.name }}{% if not loop.last %}, {% endif %}{% endfor %}{% for parameter in syntax.arguments.optional %}{% if syntax.arguments.required %}, {% endif %}{% if loop.first %}[ {% endif %}{{ parameter.type }} {{ parameter.name }} = {{ parameter.default }}{% if loop.last %} ]{% endif %}{% endfor %} )</ code > </ pre >
@@ -182,6 +181,7 @@ <h4>Returns:</h4>
182
181
< li > {{ item.type }} {{ item.name }}</ li >
183
182
{% endfor %}
184
183
</ ul >
184
+ </ div >
185
185
{% endif %}
186
186
{% endfor %}
187
187
{% endif %}
@@ -211,7 +211,9 @@ <h3>OOP syntax: <a href="/OOP_Introduction" ><i class="fa-regular fa-circle-ques
211
211
{% endif %}
212
212
{% endif %}
213
213
{% endfor %}
214
+ {% if function.syntaxes.single %}
214
215
</ div >
216
+ {% endif %}
215
217
216
218
<!-- Preview Images -->
217
219
{% for type_name in ['shared', 'client', 'server'] %}
0 commit comments