summaryrefslogtreecommitdiff
path: root/inc/geshi/text.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-06-20 18:06:28 +0200
committerAndreas Gohr <andi@splitbrain.org>2008-06-20 18:06:28 +0200
commitbb62d5fbe1aa438a9e655573ea9d8c8d3183006b (patch)
tree050838041b33d8e8c5a8d4d9c93472ce099b2ed0 /inc/geshi/text.php
parent715bdf1fe13fba0611cf88311bbc3d7945b4a544 (diff)
downloadrpg-bb62d5fbe1aa438a9e655573ea9d8c8d3183006b.tar.gz
rpg-bb62d5fbe1aa438a9e655573ea9d8c8d3183006b.tar.bz2
GeSHi update to 1.0.7.22
darcs-hash:20080620160628-7ad00-1bfd8f407b5b38c29c7879d67da2ea3dbd0d1816.gz
Diffstat (limited to 'inc/geshi/text.php')
-rw-r--r--inc/geshi/text.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/inc/geshi/text.php b/inc/geshi/text.php
index 838869647..11f886c72 100644
--- a/inc/geshi/text.php
+++ b/inc/geshi/text.php
@@ -4,7 +4,7 @@
* --------
* Author: Sean Hanna (smokingrope@gmail.com)
* Copyright: (c) 2006 Sean Hanna
- * Release Version: 1.0.7.21
+ * Release Version: 1.0.7.22
* Date Started: 04/23/2006
*
* Standard Text File (No Syntax Highlighting).
@@ -12,7 +12,7 @@
* CHANGES
* -------
* 04/23/2006 (0.5.0)
- * - Syntax File Created
+ * - Syntax File Created
*
* 04/27/2006 (1.0.0)
* - Documentation Cleaned Up
@@ -40,17 +40,17 @@
* along with GeSHi; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
-
************************************************************************************/
+
$language_data = array (
'LANG_NAME' => 'Text',
- 'COMMENT_SINGLE' => array( ),
- 'COMMENT_MULTI' => array( ),
+ 'COMMENT_SINGLE' => array(),
+ 'COMMENT_MULTI' => array(),
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
'QUOTEMARKS' => array(),
'ESCAPE_CHAR' => '',
- 'KEYWORDS' => array( ),
- 'SYMBOLS' => array( ),
+ 'KEYWORDS' => array(),
+ 'SYMBOLS' => array(),
'CASE_SENSITIVE' => array(
GESHI_COMMENTS => false
),
@@ -73,9 +73,11 @@ $language_data = array (
'SCRIPT_DELIMITERS' => array( ),
'HIGHLIGHT_STRICT_BLOCK' => array( )
);
+
if (isset($this) && is_a($this, 'GeSHi')) {
$this->set_numbers_highlighting(false);
$this->set_brackets_highlighting(false);
$this->disable_highlighting();
}
+
?>