1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
package MojoMojo::Formatter::SyntaxHighlight;
use strict;
use warnings;
use parent qw/MojoMojo::Formatter/;
use HTML::Entities;
eval {require Syntax::Highlight::Engine::Kate};
my $kate_installed = !$@;
=head2 module_loaded
Return true if the module is loaded.
=cut
sub module_loaded { $kate_installed }
my $main_formatter;
eval { $main_formatter = MojoMojo->pref('main_formatter'); };
$main_formatter ||= 'MojoMojo::Formatter::Markdown';
=head1 NAME
MojoMojo::Formatter::SyntaxHighlight - syntax highlighting for code blocks
=head1 DESCRIPTION
This formatter performs syntax highlighting on code blocks.
=head1 METHODS
=head2 format_content_order
The syntax highlight formatter is based on C<< <pre> >> tags entered by the
user, so it must run before other formatters that produce C<< <pre> >> tags.
The earliest such formatter is the main formatter.
=cut
sub format_content_order { 14 }
=head2 format_content
This formatter uses L<Syntax::Highlight::Engine::Kate> to syntax highlight code
inside of C<< <pre lang="language"> ... </pre> >> tags:
<pre lang="Perl">
say "Hello world!";
</pre>
See L<Syntax::Highlight::Engine::Kate/PLUGINS> for a list of supported
languages.
=cut
# The $kate formatter is scoped outside of format_content. Otherwise, memory
# leaks have occurred. This is also faster, as it avoids instantiation for every
# request.
my $kate;
sub format_content {
my ( $class, $content ) = @_;
return unless $class->module_loaded;
my @blocks = ();
my $ph = 0;
my $ph_base = __PACKAGE__ . '::PlaceHolder::';
# new school - consistent with other new syntax, but broke for me to the point of exhaustion
# $$content =~ s/\{\{\s*code\s+lang=""\s*\}\}/<pre>/g;
# while ( $$content =~ s/\{\{\s*code(?:\s+lang=['"]*(.*?)['"]*")?\s*\}\}(.*?)\{\{\s*end\s*\}\}/$ph_base$ph/si ) {
# drop all lang="" -- mateu
$$content =~ s/<\s*pre\s+lang=""\s*>/<pre>/g;
while ( $$content =~ s/<\s*pre(?:\s+lang=['"]*(.*?)['"]*")?\s*>(.*?)<\s*\/pre\s*>/$ph_base$ph/si ) {
my ( $language, $block ) = ( $1, $2 );
# Fix newline issue
$block =~ s/\r//g;
if ($language) {
eval {
$kate->language($language);
} and do {
$block = $kate->highlightText($block);
}
}
push @blocks, $block;
$ph++;
}
for ( my $i = 0 ; $i < $ph ; $i++ ) {
$$content =~ s/$ph_base$i/<pre>$blocks[$i]<\/pre>/;
}
return $content;
}
if (module_loaded) {
$kate = Syntax::Highlight::Engine::Kate->new(
language => 'Perl',
substitutions => {
"<" => "<",
">" => ">",
"&" => "&",
"^" => "ˆ",
" " => " ",
"\t" => " ",
"\n" => "\n",
},
format_table => {
Alert => [ q{<span class="kateAlert">}, "</span>" ],
BaseN => [ q{<span class="kateBaseN">}, "</span>" ],
BString => [ q{<span class="kateBString">}, "</span>" ],
Char => [ q{<span class="kateChar">}, "</span>" ],
Comment => [ q{<span class="kateComment"><i>}, "</i></span>" ],
DataType => [ q{<span class="kateDataType">}, "</span>" ],
DecVal => [ q{<span class="kateDecVal">}, "</span>" ],
Error => [ q{<span class="kateError"><b><i>}, "</i></b></span>" ],
Float => [ q{<span class="kateFloat">}, "</span>" ],
Function => [ q{<span class="kateFunction">}, "</span>" ],
IString => [ q{<span class="kateIString">}, "" ],
Keyword => [ q{<b>}, "</b>" ],
Normal => [ q{}, "" ],
Operator => [ q{<span class="kateOperator">}, "</span>" ],
Others => [ q{<span class="kateOthers">}, "</span>" ],
RegionMarker => [ q{<span class="kateRegionMarker"><i>}, "</i></span>" ],
Reserved => [ q{<span class="kateReserved"><b>}, "</b></span>" ],
String => [ q{<span class="kateString">}, "</span>" ],
Variable => [ q{<span class="kateVariable"><b>}, "</b></span>" ],
Warning => [ q{<span class="kateWarning"><b><i>}, "</b></i></span>" ],
},
);
}
=head1 SEE ALSO
L<MojoMojo>, L<Module::Pluggable::Ordered> and L<Syntax::Highlight::Engine::Kate>.
=head1 AUTHORS
Johannes Plunien E<lt>plu@cpan.orgE<gt>
=head1 LICENSE
This library is free software. You can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
1;
|