about summary refs log tree commit diff stats
path: root/contrib/plaintext
diff options
context:
space:
mode:
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
-	}
-}