(p)
| 19873 | * Adds an HTML anchor tag to the summary buffer |
| 19874 | * |
| 19875 | * @param {string} text link text/content |
| 19876 | * @param {string} href hyperlink |
| 19877 | * |
| 19878 | * @returns {Summary} summary instance |
| 19879 | */ |
| 19880 | addLink(text, href) { |
| 19881 | const element = this.wrap("a", text, { href }); |
| 19882 | return this.addRaw(element).addEOL(); |
| 19883 | } |
| 19884 | }; |
| 19885 | var _summary = new Summary(); |
| 19886 | |
| 19887 | // |
no test coverage detected