File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1
1
## 1.4.0
2
2
3
3
* Output for the ` @throws ` tag.
4
+ * Output in HTML for the ` @properties ` tag.
4
5
5
6
## 1.3.0
6
7
Original file line number Diff line number Diff line change 45
45
</p >
46
46
{{ /if }}
47
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
+
48
72
{{ #if returns }}
49
73
{{ #returns }}
50
74
<h4 >Returns</h4 >
You can’t perform that action at this time.
0 commit comments