(comment)
| 106 | } |
| 107 | |
| 108 | function paramSection(comment) { |
| 109 | return ( |
| 110 | comment.params.length > 0 && [ |
| 111 | u('heading', { depth: depth + 1 }, [u('text', 'Parameters')]), |
| 112 | paramList(comment.params) |
| 113 | ] |
| 114 | ); |
| 115 | } |
| 116 | |
| 117 | function propertySection(comment) { |
| 118 | return ( |