diff options
author | Daniel Burrows <dburrows@debian.org> | 2008-09-05 21:05:13 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2008-09-05 21:05:13 -0700 |
commit | 9d810a195fa93b2dd05543e45802fb1aa58c4625 (patch) | |
tree | 3c69ff50d0bf45d83135017fac6035c3d7016617 /doc/fixup-text | |
parent | c8212d593b221db9fc58ce980d071c6f02fd743b (diff) | |
download | aptitude-9d810a195fa93b2dd05543e45802fb1aa58c4625.tar.gz |
Strip more HTML entities from the output of html2text. (Closes: #496719)
Diffstat (limited to 'doc/fixup-text')
-rwxr-xr-x | doc/fixup-text | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/fixup-text b/doc/fixup-text new file mode 100755 index 00000000..47417e4f --- /dev/null +++ b/doc/fixup-text @@ -0,0 +1,9 @@ +#!/bin/sh + +exec sed -e 's/—/--/g +s/→/->/g +s/λ/lambda/g + +# These seem to be for Finnish: +s/Ž/Zh/g +s/š/sh/g' |