The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Plagger::Tag;
use strict;

use Text::Tags::Parser;

sub parse {
    my($class, $string) = @_;
    Text::Tags::Parser->new->parse_tags($string);
}

1;