(
html: string,
collapse: boolean,
)
| 1500 | |
| 1501 | private wrapHtmlWithCollapseIfNeeded( |
| 1502 | html: string, |
| 1503 | collapse: boolean, |
| 1504 | ): string { |
| 1505 | return collapse ? `<blockquote expandable>${html}</blockquote>` : html; |
| 1506 | } |
| 1507 | |
| 1508 | private async sendHtml( |
| 1509 | msg: Api.Message, |
| 1510 | html: string, |