* Adds a collapsable HTML details element to the summary buffer * * @param {string} label text for the closed state * @param {string} content collapsable content * * @returns {Summary} summary instance
(label, content)
| 19724 | * @returns {Summary} summary instance |
| 19725 | */ |
| 19726 | emptyBuffer() { |
| 19727 | this._buffer = ""; |
| 19728 | return this; |
| 19729 | } |
| 19730 | /** |
| 19731 | * Adds raw text to the summary buffer |
| 19732 | * |