From 480d6f93c13ac3f0fbe931c9abfbcb105f235fd0 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 12 Feb 2013 11:27:29 -0400 Subject: [PATCH] highlight: Now adds a span with class highlight- around highlighted content, allowing for language-specific css styling. --- IkiWiki/Plugin/highlight.pm | 7 ++++--- debian/changelog | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/IkiWiki/Plugin/highlight.pm b/IkiWiki/Plugin/highlight.pm index 4e86207f1..fbe7ddff4 100644 --- a/IkiWiki/Plugin/highlight.pm +++ b/IkiWiki/Plugin/highlight.pm @@ -89,7 +89,7 @@ sub checkconfig () { id => $file, call => sub { my %params=@_; - highlight($langfile, $params{content}); + highlight($langfile, $file, $params{content}); }, longname => sprintf(gettext("Source code: %s"), $file), @opts, @@ -106,7 +106,7 @@ sub htmlizeformat { return; } - return Encode::decode_utf8(highlight($langfile, shift)); + return Encode::decode_utf8(highlight($langfile, $format, shift)); } my %ext2lang; @@ -172,6 +172,7 @@ sub ext2langfile ($) { # Interface to the highlight C library. sub highlight ($$) { my $langfile=shift; + my $extorfile=shift; my $input=shift; eval q{use highlight}; @@ -200,7 +201,7 @@ sub highlight ($$) { $gen=$highlighters{$langfile}; } - return $gen->generateString($input); + return "
".$gen->generateString($input)."
"; } 1 diff --git a/debian/changelog b/debian/changelog index 4e396e60f..b12cf19e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,8 @@ ikiwiki (3.20121213) UNRELEASED; urgency=low dynamic cgi pages, which cannot use trail anyway. * Deal with empty diffurl in configuration. * cvs: Various fixes. + * highlight: Now adds a span with class highlight- around + highlighted content, allowing for language-specific css styling. -- Joey Hess Sat, 22 Dec 2012 16:15:24 -0400 -- 2.32.0.93.g670b81a890