8cb2cf0997
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4 ea778897-0a13-0410-b9d1-a72fbfd435f5
9 lines
289 B
Bash
Executable File
9 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this converts the UTF-8 string in the Content-Type meta tag in all
|
|
# html files to lower case, otherwise some browsers
|
|
# (e.g. Mozilla Firefox) have problems to detect the right encoding
|
|
# if it is put through a webserver
|
|
|
|
sed -i 's/charset=UTF-8/charset=utf-8/g' html/*.html
|