summaryrefslogtreecommitdiff
path: root/inc/geshi/perl.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-03-26 22:17:55 +0100
committerAndreas Gohr <andi@splitbrain.org>2008-03-26 22:17:55 +0100
commitd09ae2055575141a00e67faeadb9bcb3d8285f3f (patch)
tree5f8f372f379b77f8f36805468d4e60fdb8ebc1b5 /inc/geshi/perl.php
parent3d1f9ec3674462e63f4195dd834603148a7c7b42 (diff)
downloadrpg-d09ae2055575141a00e67faeadb9bcb3d8285f3f.tar.gz
rpg-d09ae2055575141a00e67faeadb9bcb3d8285f3f.tar.bz2
GeSHi update to 1.0.7.21
darcs-hash:20080326211755-7ad00-98c89cb8da99fab17b88222d33a312a020527cdb.gz
Diffstat (limited to 'inc/geshi/perl.php')
-rw-r--r--inc/geshi/perl.php16
1 files changed, 14 insertions, 2 deletions
diff --git a/inc/geshi/perl.php b/inc/geshi/perl.php
index 8f063cd99..0ac9e08f2 100644
--- a/inc/geshi/perl.php
+++ b/inc/geshi/perl.php
@@ -4,13 +4,15 @@
* --------
* Author: Andreas Gohr (andi@splitbrain.org), Ben Keen (ben.keen@gmail.com)
* Copyright: (c) 2004 Andreas Gohr, Ben Keen (http://www.benjaminkeen.org/), Nigel McNie (http://qbnz.com/highlighter/)
- * Release Version: 1.0.7.20
+ * Release Version: 1.0.7.21
* Date Started: 2004/08/20
*
* Perl language file for GeSHi.
*
* CHANGES
* -------
+ * 2008/02/15 (1.003)
+ * - Fixed SF#1891630 with placebo patch
* 2006/01/05 (1.0.2)
* - Used hardescape feature for ' strings (Cliff Stanford)
* 2004/11/27 (1.0.1)
@@ -46,7 +48,17 @@
$language_data = array (
'LANG_NAME' => 'Perl',
'COMMENT_SINGLE' => array(1 => '#'),
- 'COMMENT_MULTI' => array( '=pod' => '=cut'),
+ 'COMMENT_MULTI' => array(
+ '=back' => '=cut',
+ '=head' => '=cut',
+ '=item' => '=cut',
+ '=over' => '=cut',
+ '=begin' => '=cut',
+ '=end' => '=cut',
+ '=for' => '=cut',
+ '=encoding' => '=cut',
+ '=pod' => '=cut'
+ ),
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
'QUOTEMARKS' => array('"'),
'HARDQUOTE' => array("'", "'"), // An optional 2-element array defining the beginning and end of a hard-quoted string