Skip to content

Commit 90ba12c

Browse files
committed
Lineabreaks on params and returns
1 parent fa52716 commit 90ba12c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_includes/api_lua.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h4>{{ function.name }}()<a href="#{% include ref_anchorlink.html element=functi
127127
{%- for return in function.returnvalues -%}
128128
<tr>
129129
<td><code>{{ return.name }}</code></td>
130-
<td>{%- for type in return.types -%}<code>{{ type }}</code>{%- endfor -%}</td>
130+
<td>{%- for type in return.types -%}<code>{{ type }}</code><br/>{%- endfor -%}</td>
131131
<td>{{ return.doc }}</td>
132132
</tr>
133133
{%- endfor -%}

_includes/api_lua_parameters.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{%- for param in parameters -%}
55
<tr>
66
<td><code>{%- if param.is_optional == "True" -%}[{{ param.name }}]{%- else -%}{{ param.name }}{%- endif -%}</code></td>
7-
<td>{%- for type in param.types -%}<code>{{ type }}</code>{%- endfor -%}</td>
7+
<td>{%- for type in param.types -%}<code>{{ type }}</code><br/>{%- endfor -%}</td>
88
<td>{{ param.doc }}
99
{%- if param.parameters -%}
1010
{% include api_lua_parameters.html parameters=param.parameters %}

0 commit comments

Comments
 (0)