We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 064417d commit 0d36570Copy full SHA for 0d36570
CHANGELOG.md
@@ -1,6 +1,7 @@
1
## 1.4.0
2
3
* Output for the `@throws` tag.
4
+* Output in HTML for the `@properties` tag.
5
6
## 1.3.0
7
share/html/section.hbs
@@ -45,6 +45,30 @@
45
</p>
46
{{/if}}
47
48
+ {{#if properties}}
49
+ <p>
50
+ <table class='table-light overflow-hidden bg-cloudy-light'>
51
+ <thead>
52
+ <th class='col-3'>property</th>
53
+ <th class='col-3'>type</th>
54
+ <th class='col-6'>description</th>
55
+ </thead>
56
+ {{#properties}}
57
+ <tr>
58
+ <td>{{name}}</td>
59
+ <td>
60
+ {{{format_type type}}}
61
+ {{#default}}
62
+ (default <code>{{.}}</code>)
63
+ {{/default}}
64
+ </td>
65
+ <td>{{{md description}}}</td>
66
+ </tr>
67
+ {{/properties}}
68
+ </table>
69
+ </p>
70
+ {{/if}}
71
+
72
{{#if returns}}
73
{{#returns}}
74
<h4>Returns</h4>
0 commit comments