Skip to content

Instantly share code, notes, and snippets.

@memememomo
Created May 20, 2014 23:40
Show Gist options
  • Save memememomo/3023cb6e1938755e1fd8 to your computer and use it in GitHub Desktop.
Save memememomo/3023cb6e1938755e1fd8 to your computer and use it in GitHub Desktop.
Mojoliciousのプラグインを作る ref: http://qiita.com/uchiko/items/58f33ae7724b7fd720fb
package Mojolicious::Plugin::Example;
use Mojo::Base 'Mojolicious::Plugin';
sub register {
my ($self, $app, $conf) = @_;
}
1;
$ mkdir -p lib/Mojolicious/Plugin
push @{app->plugins->namespaces}, 'MyApp::Plugin';
package Mojolicious::Plugin::Nl2br;
use Mojo::Base 'Mojolicious::Plugin';
sub register {
my ($self, $app, $conf) = @_;
$app->helper('nl2br' => sub {
my ($c, $text) = @_;
$text =~ s/(\r\n|\n\r|\n|\r)/<br\/>$1/g;
return $text;
});
}
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment