summaryrefslogtreecommitdiff
path: root/scripts/umlauts.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/umlauts.sh')
-rwxr-xr-xscripts/umlauts.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/umlauts.sh b/scripts/umlauts.sh
new file mode 100755
index 0000000..748b327
--- /dev/null
+++ b/scripts/umlauts.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+# edit html with us-intl-altgr and write as usual
+# use this afterwards
+# original by Michael Luthardt 2007
+# http://dr-luthardt.de/
+
+sed -i -e 's/\Ä/\Ä/g' \
+ -i -e 's/\ä/\ä/g' \
+ -i -e 's/\Ö/\Ö/g' \
+ -i -e 's/\ö/\ö/g' \
+ -i -e 's/\Ü/\Ü/g' \
+ -i -e 's/\ü/\ü/g' \
+ -i -e 's/\ß/\ß/g' \
+ -i -e 's/\^-/\–/g' \
+ -i -e 's/\^ /\ /g' \
+ -i -e 's/\^</\&lt;/g' \
+ -i -e 's/\^>/\&gt;/g' \
+ -i -e 's/\^&/\&amp;/g' \
+ -i -e 's/\^\^/\&#94;/g' \
+ -i -e 's/\^x/\&times;/g' \
+ -i -e 's/\^r/\&rarr;/g' \
+ -i -e 's/\^b/\&bull;/g' \
+ -i -e 's/\^e/\&#8644;/g' \
+$1