aboutsummaryrefslogtreecommitdiff
path: root/contrib/plaintext.py
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-07 11:14:40 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-07 11:14:50 -0400
commit0647ea64839df5ceecf3a71f672f05a589fd1409 (patch)
tree63102e7e0bb0167618bfbcb972948e255ae47170 /contrib/plaintext.py
parente0cadd61a24473e5d41ed3e54f2826b7dd8a8a0e (diff)
Move ANSI stripping from filters to Go
Diffstat (limited to 'contrib/plaintext.py')
-rwxr-xr-xcontrib/plaintext.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/plaintext.py b/contrib/plaintext.py
index 522055b..d46991a 100755
--- a/contrib/plaintext.py
+++ b/contrib/plaintext.py
@@ -5,7 +5,6 @@ import re
# TODO: Wrap text to terminal width?
-ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]')
# 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:")
@@ -13,7 +12,6 @@ quote_re = re.compile(r">+")
sys.stdin.reconfigure(encoding='utf-8', errors='ignore')
mail = sys.stdin.read().replace("\r\n", "\n")
-mail = ansi_escape.sub('', mail)
for line in mail.split("\n"):
if quote_re.match(line) or quote_prefix_re.match(line):