diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-12-20 15:42:45 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-12-20 15:42:45 +0100 |
commit | debb9053f737f8f51b8cc402d7d18b8f0a1ee70a (patch) | |
tree | 9d3a269d808aebe19fae0d82cf2f90b16eb4498b | |
parent | bb64fc9350d9159ea23f415de7964b6a4b2123d4 (diff) |
highlight text/html as xml
geshi doesn't understand "html", but only html4strict
XML seems to be the best choice.
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rw-r--r-- | system/application/models/file_mod.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index 5a06a9801..19a607334 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -363,7 +363,7 @@ class File_mod extends Model { 'text/x-subviewer' => 'bash', 'text/x-makefile' => 'make', #'text/x-log' => 'log', - 'text/html' => 'html', + 'text/html' => 'xml', 'text/css' => 'css', 'message/rfc822' => 'email', #'image/svg+xml' => 'xml', |