Implement first-draft of HTML message/reply parsing + HTML sanitization

This commit is contained in:
2025-01-04 04:43:39 -05:00
parent bfe94aa2fe
commit 0460771d5d
7 changed files with 88 additions and 5 deletions

View File

@@ -38,6 +38,7 @@ export type Message = {
},
subject: string,
content: string,
html?: string,
mailbox: string,
modseq: BigInt,
thread?: string,
@@ -54,6 +55,7 @@ export type ThreadComment = {
date: Date,
subject: string,
text: string,
rendered: string,
}
export type ThreadData = {