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