NAME
Mojolicious::Plugin::PODRenderer - POD renderer plugin
SYNOPSIS
# Mojolicious
$self
->plugin(
'PODRenderer'
);
$self
->plugin(
PODRenderer
=> {
name
=>
'foo'
});
$self
->plugin(
PODRenderer
=> {
preprocess
=>
'epl'
});
$self
->render(
'some_template'
,
handler
=>
'pod'
);
%= pod_to_html
"=head1 TEST\n\nC<123>"
# Mojolicious::Lite
plugin
'PODRenderer'
;
plugin
PODRenderer
=> {
name
=>
'foo'
};
plugin
PODRenderer
=> {
preprocess
=>
'epl'
};
$self
->render(
'some_template'
,
handler
=>
'pod'
);
%= pod_to_html
"=head1 TEST\n\nC<123>"
DESCRIPTION
Mojolicious::Plugin::PODRenderer is a renderer for true Perl hackers, rawr! The code of this plugin is a good example for learning to build new plugins.
OPTIONS
Mojolicious::Plugin::PODRenderer supports the following options.
name
# Mojolicious::Lite
plugin
PODRenderer
=> {
name
=>
'foo'
};
Handler name.
no_perldoc
# Mojolicious::Lite
plugin
PODRenderer
=> {
no_perldoc
=> 1};
Disable perldoc browser.
preprocess
# Mojolicious::Lite
plugin
PODRenderer
=> {
preprocess
=>
'epl'
};
Name of handler used to preprocess POD.
HELPERS
Mojolicious::Plugin::PODRenderer implements the following helpers.
pod_to_html
%= pod_to_html
'=head2 lalala'
<%= pod_to_html begin %>=head2 lalala<% end %>
Render POD to HTML.
METHODS
Mojolicious::Plugin::PODRenderer inherits all methods from Mojolicious::Plugin and implements the following new ones.
register
$plugin
->register;
Register renderer in Mojolicious application.