From 784f65e30a6aaeb8f15266fc3d94328b75c0e851 Mon Sep 17 00:00:00 2001 From: Garrett Mills Date: Mon, 6 Jan 2025 14:16:05 +0000 Subject: [PATCH] Add license notice to email reply parser --- src/mail/replies.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mail/replies.ts b/src/mail/replies.ts index ecc2a44..80930e3 100644 --- a/src/mail/replies.ts +++ b/src/mail/replies.ts @@ -1,3 +1,10 @@ +// Adapted from the GitHub email_reply_parser library, which is licensed +// permissively under the terms of the MIT license. +// https://github.com/github/email_reply_parser/ + +// Modifications focus on rewriting as TypeScript and improving support +// for parsing lightly formatted HTML messages. + // EmailReplyParser is a library to parse plain text email content. // The goal is to identify quoted text, signatures, or original content.