* Adds an HTML line break ( ) to the summary buffer * * @returns {Summary} summary instance
()
| 19774 | addList(items, ordered = false) { |
| 19775 | const tag = ordered ? "ol" : "ul"; |
| 19776 | const listItems = items.map((item) => this.wrap("li", item)).join(""); |
| 19777 | const element = this.wrap(tag, listItems); |
| 19778 | return this.addRaw(element).addEOL(); |
| 19779 | } |
| 19780 | /** |
| 19781 | * Adds an HTML table to the summary buffer |
| 19782 | * |