summaryrefslogtreecommitdiff
path: root/inc/geshi/typoscript.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-08-26 17:18:46 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-08-26 17:18:46 +0200
commit15c2c8532309b462a4d0c22e2358e80a1c4b7a20 (patch)
tree0a1c626b821df2a57f666c2d0c99b3d7ede498ff /inc/geshi/typoscript.php
parentc3564cf99ca2ff7b35e27d0ab319e17d67b17943 (diff)
downloadrpg-15c2c8532309b462a4d0c22e2358e80a1c4b7a20.tar.gz
rpg-15c2c8532309b462a4d0c22e2358e80a1c4b7a20.tar.bz2
GeSHi upgraded to version 1.0.8.11
Diffstat (limited to 'inc/geshi/typoscript.php')
-rw-r--r--inc/geshi/typoscript.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/inc/geshi/typoscript.php b/inc/geshi/typoscript.php
index c1e380689..6751aaa8d 100644
--- a/inc/geshi/typoscript.php
+++ b/inc/geshi/typoscript.php
@@ -4,7 +4,7 @@
* --------
* Author: Jan-Philipp Halle (typo3@jphalle.de)
* Copyright: (c) 2005 Jan-Philipp Halle (http://www.jphalle.de/)
- * Release Version: 1.0.8.9
+ * Release Version: 1.0.8.11
* Date Started: 2005/07/29
*
* TypoScript language file for GeSHi.
@@ -218,6 +218,15 @@ $language_data = array (
'OBJECT_SPLITTERS' => array(
),
'REGEXPS' => array(
+ // xhtml tag
+ 2 => array(
+ GESHI_SEARCH => '(&lt;)([a-zA-Z\\/][^\\/\\|]*?)(&gt;)',
+ GESHI_REPLACE => '\\2',
+ GESHI_MODIFIERS => 's',
+ GESHI_BEFORE => '\\1',
+ GESHI_AFTER => '\\3'
+ ),
+
// Constant
0 => array(
GESHI_SEARCH => '(\{)(\$[a-zA-Z_\.]+[a-zA-Z0-9_\.]*)(\})',
@@ -236,15 +245,6 @@ $language_data = array (
GESHI_AFTER => '\\2'
),
- // xhtml tag
- 2 => array(
- GESHI_SEARCH => '(&lt;[a-zA-Z\!\/].*?&gt;)',
- GESHI_REPLACE => '\\1',
- GESHI_MODIFIERS => 's',
- GESHI_BEFORE => '',
- GESHI_AFTER => ''
- ),
-
// extension keys / tables: (static|user|ttx|tx|tt|fe)_something[_something]
3 => array(
GESHI_SEARCH => '(plugin\.|[^\.]\b)((?:static|user|ttx|tx|tt|fe)(?:_[0-9A-Za-z_]+?)\b)',