diff options
Diffstat (limited to 'contrib/plaintext.py')
-rwxr-xr-x | contrib/plaintext.py | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/plaintext.py b/contrib/plaintext.py deleted file mode 100755 index d46991a7..00000000 --- a/contrib/plaintext.py +++ /dev/null @@ -1,20 +0,0 @@ -#!/usr/bin/env python3 -from colorama import Fore, Style -import sys -import re - -# TODO: Wrap text to terminal width? - -# TODO: I guess this might vary from MUA to MUA. I've definitely seen localized -# versions in the wild -quote_prefix_re = re.compile(r"On .*, .* wrote:") -quote_re = re.compile(r">+") - -sys.stdin.reconfigure(encoding='utf-8', errors='ignore') -mail = sys.stdin.read().replace("\r\n", "\n") - -for line in mail.split("\n"): - if quote_re.match(line) or quote_prefix_re.match(line): - print(f"{Style.DIM}{Fore.CYAN}{line}{Style.RESET_ALL}") - else: - print(line) |