* Adds an HTML anchor tag to the summary buffer * * @param {string} text link text/content * @param {string} href hyperlink * * @returns {Summary} summary instance
(text, href)
| 19796 | }).join(""); |
| 19797 | const element = this.wrap("table", tableBody); |
| 19798 | return this.addRaw(element).addEOL(); |
| 19799 | } |
| 19800 | /** |
| 19801 | * Adds a collapsable HTML details element to the summary buffer |
| 19802 | * |
| 19803 | * @param {string} label text for the closed state |
| 19804 | * @param {string} content collapsable content |