The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MojoMojo::Formatter::SyntaxHighlight - syntax highlighting for code blocks

DESCRIPTION

This formatter performs syntax highlighting on code blocks.

METHODS

format_content_order

The syntax highlight formatter is based on <pre> tags and therefore it's elementary to get those unchanged. So we need to run this plugin before MojoMojo::Formatter::Wiki which actually changes those tags.

format_content

This formatter uses Syntax::Highlight::Engine::Kate to highlight code syntax inside of <pre lang="my_lang"> </pre>tags. To let the formatter know which language has to be highlighted, do:

 <pre lang="Perl">
   say "Hola Mundo";
 </pre>

See "PLUGINS" in Syntax::Highlight::Engine::Kate for a list of supported languages.

SEE ALSO

MojoMojo, Module::Pluggable::Ordered and Syntax::Highlight::Engine::Kate.

AUTHORS

Johannes Plunien <plu@cpan.org>

LICENSE

This module is licensed under the same terms as Perl itself.