Skip to content

Instantly share code, notes, and snippets.

@sshaw
Created July 15, 2012 02:45
Show Gist options
  • Save sshaw/3114566 to your computer and use it in GitHub Desktop.
Save sshaw/3114566 to your computer and use it in GitHub Desktop.
HTML Paragraph Helper for Mojolicious
# Turn text from a text area into HTML paragraph elements.
$self->helper(paragraphs => sub {
my ($c, $text) = @_;
return unless $text;
my $html = join '', map $c->tag('p', $_), split /^\s*\015\012/m, $text;
Mojo::ByteStream->new($html);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment