* Adds an HTML image tag to the summary buffer * * @param {string} src path to the image you to embed * @param {string} alt text description of the image * @param {SummaryImageOptions} options (optional) addition image attributes * * @returns {Summary} summary instance
(src, alt, options)
| 19737 | */ |
| 19738 | addRaw(text, addEOL = false) { |
| 19739 | this._buffer += text; |
| 19740 | return addEOL ? this.addEOL() : this; |
| 19741 | } |
| 19742 | /** |
| 19743 | * Adds the operating system-specific end-of-line marker to the buffer |
| 19744 | * |
| 19745 | * @returns {Summary} summary instance |
| 19746 | */ |
| 19747 | addEOL() { |