(examples, paramType, paramName)
| 297 | } |
| 298 | |
| 299 | renderShortFormatExamples(examples, paramType, paramName) { |
| 300 | return html`${examples.map((x, i) => html` |
| 301 | ${i === 0 ? '' : '┃'} |
| 302 | ${this.renderExample(x, paramType, paramName)}`)}`; |
| 303 | } |
| 304 | |
| 305 | renderLongFormatExamples(exampleList, paramType, paramName) { |
| 306 | return html` <ul style="list-style-type: disclosure-closed;"> |
no test coverage detected