* 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)
| 19740 | */ |
| 19741 | addRaw(text, addEOL = false) { |
| 19742 | this._buffer += text; |
| 19743 | return addEOL ? this.addEOL() : this; |
| 19744 | } |
| 19745 | /** |
| 19746 | * Adds the operating system-specific end-of-line marker to the buffer |
| 19747 | * |
| 19748 | * @returns {Summary} summary instance |
| 19749 | */ |
| 19750 | addEOL() { |