We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a089a97 commit c4eed03Copy full SHA for c4eed03
1 file changed
scripts/docs/templates/common.template.html
@@ -24,10 +24,31 @@
24
<@- endmacro -@>
25
26
<@ macro returnObject(params) -@>
27
- <@- if params -@><br>
28
- <@- for param in params -@>
29
- <code><$ param.type $></code> <span class="fixed-width"><$ param.key $></span> <$ param.description $><br>
30
- <@- endfor @>
+ <@- if params -@>
+ <table class="table returns-object-table param-table">
+ <thead>
+ <tr>
31
+ <th>Property</th>
32
+ <th>Type</th>
33
+ <th>Details</th>
34
+ </tr>
35
+ </thead>
36
+ <tbody>
37
+ <@ for param in params @>
38
39
+ <td class="fixed-width">
40
+ <$ param.key $>
41
+ </td>
42
+ <td>
43
+ <$ param.type | code $>
44
45
46
+ <$ param.description | marked $>
47
48
49
+ <@ endfor @>
50
+ </tbody>
51
+ </table>
52
<@- endif @>
53
54
0 commit comments