* Compile cover page * @param {Text} text Text content * @returns {String} Cover page
(text)
| 340 | * @returns {String} Cover page |
| 341 | */ |
| 342 | cover(text) { |
| 343 | const cacheToc = this.toc.slice(); |
| 344 | const html = this.compile(text); |
| 345 | |
| 346 | this.toc = cacheToc.slice(); |
| 347 | |
| 348 | return html; |
| 349 | } |
| 350 | } |
no outgoing calls
no test coverage detected