aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/config.default.php17
1 files changed, 11 insertions, 6 deletions
diff --git a/data/config.default.php b/data/config.default.php
index 783412e..bd41d0d 100644
--- a/data/config.default.php
+++ b/data/config.default.php
@@ -55,6 +55,11 @@ $GLOBALS['phorkie']['languages'] = array(
'mime' => 'application/javascript',
'geshi' => 'javascript'
),
+ 'pl' => array(
+ 'title' => 'Perl',
+ 'mime' => 'application/x-perl',
+ 'geshi' => 'pl'
+ ),
'php' => array(
'title' => 'PHP',
'mime' => 'text/x-php',
@@ -91,20 +96,20 @@ $GLOBALS['phorkie']['languages'] = array(
'mime' => 'image/svg+xml',
'show' => false
),
- 'ts' => array(
- 'title' => 'TypoScript',
- 'mime' => 'text/x-typoscript',/* TODO: correct type */
- 'geshi' => 'typoscript'
- ),
'txt' => array(
'title' => 'Text (plain)',
'mime' => 'text/plain',
'geshi' => 'txt'
),
+ 'ts' => array(
+ 'title' => 'TypoScript',
+ 'mime' => 'text/x-typoscript',/* TODO: correct type */
+ 'geshi' => 'typoscript'
+ ),
'xml' => array(
'title' => 'XML',
'mime' => 'text/xml',
'geshi' => 'xml'
),
);
-?> \ No newline at end of file
+?>