aboutsummaryrefslogtreecommitdiff
path: root/htindex
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-01-31 14:26:56 +0000
committerJohn Ankarström <john@ankarstrom.se>2021-01-31 14:26:56 +0000
commit254097968bc13bfbadf18932f92ff275116ae95f (patch)
tree9ebd3cb35fb0fcfc93088c7457d34898a85acfee /htindex
parentc24ff6b3ff7abdfeff9fde7d19075ea1edec087c (diff)
downloadem-254097968bc13bfbadf18932f92ff275116ae95f.tar.gz
htindex: Support more characters
Diffstat (limited to 'htindex')
-rwxr-xr-xhtindex8
1 files changed, 6 insertions, 2 deletions
diff --git a/htindex b/htindex
index accd0be..b3f88f1 100755
--- a/htindex
+++ b/htindex
@@ -67,8 +67,12 @@ source $* | awk '
gsub("[ÙÚÛÜùúûü]", "u", s)
gsub("[×]", "x", s)
gsub("[Ýýÿ]", "y", s)
- gsub("[^-a-z_ ]", "", s)
- gsub("[ ]+", "-", s)
+ gsub("[/]", "-", s)
+ gsub("[ \n]+\\+[ \n]+", "+", s)
+ gsub("[ \n]+=[ \n]+", "=", s)
+ gsub("[ \n]+", "-", s)
+ gsub("[^=-+a-z0-9_ ]", "", s)
+ gsub("-+", "-", s)
return s
}
'