diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-01-22 13:53:27 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-01-22 13:53:27 +0100 |
commit | 3971c1cc98ea6a7d389ba5404df61e523184f3bc (patch) | |
tree | d58c80eb77f236bd80ba02e218b0e66b2c178d6b /inc/geshi/csharp.php | |
parent | b9ac8716a5af742f88887fb9c1315b0e01d244a3 (diff) | |
download | rpg-3971c1cc98ea6a7d389ba5404df61e523184f3bc.tar.gz rpg-3971c1cc98ea6a7d389ba5404df61e523184f3bc.tar.bz2 |
GeSHi updated to 1.0.7.6
darcs-hash:20060122125327-7ad00-3850bd0d928235a39fd19d79b306259f3139ba75.gz
Diffstat (limited to 'inc/geshi/csharp.php')
-rw-r--r-- | inc/geshi/csharp.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/inc/geshi/csharp.php b/inc/geshi/csharp.php index e2bf570e6..aba83a008 100644 --- a/inc/geshi/csharp.php +++ b/inc/geshi/csharp.php @@ -4,15 +4,17 @@ * ----------
* Author: Alan Juden (alan@judenware.org)
* Copyright: (c) 2004 Alan Juden, Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.5 - * CVS Revision Version: $Revision: 1.5 $
+ * Release Version: 1.0.7.6 + * CVS Revision Version: $Revision: 1.7 $
* Date Started: 2004/06/04
- * Last Modified: $Date: 2005/10/22 07:52:59 $
+ * Last Modified: $Date: 2006/01/05 07:20:52 $
*
* C# language file for GeSHi.
*
* CHANGES
* -------
+ * 2005/01/05 (1.0.1)
+ * - Used hardquote support for @"..." strings (Cliff Stanford)
* 2004/11/27 (1.0.0)
* - Initial release
*
@@ -45,6 +47,8 @@ 'COMMENT_MULTI' => array('/*' => '*/'),
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
'QUOTEMARKS' => array("'", '"'),
+ 'HARDQUOTE' => array('@"', '"'),
+ 'HARDESCAPE' => array('""'),
'ESCAPE_CHAR' => '\\',
'KEYWORDS' => array(
1 => array(
|