aboutsummaryrefslogtreecommitdiff
path: root/contrib/plaintext
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-06-27 09:32:46 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-27 09:32:46 -0400
commit177651bddab145c8a56cdfeb0d57b5fd95a6d0e2 (patch)
tree75681e3ab5c71b8cdb06f22247dfcd4a547393dc /contrib/plaintext
parent59df06fe28ddde3607cb3080636e65d48b762baf (diff)
Move contrib -> filters
Diffstat (limited to 'contrib/plaintext')
-rwxr-xr-xcontrib/plaintext13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/plaintext b/contrib/plaintext
deleted file mode 100755
index 71e33f7..0000000
--- a/contrib/plaintext
+++ /dev/null
@@ -1,13 +0,0 @@
-# vim: set ft=awk :
-BEGIN {
- dim = "\x1B[2m"
- cyan = "\x1B[36m"
- reset = "\x1B[0m"
-}
-{
- if ($0 ~ /^On .*, .* wrote:/ || $0 ~ /^>+/) {
- print dim cyan $0 reset
- } else {
- print $0
- }
-}