Subject: | Bracket stripped as last character |
#!/usr/bin/perl
use strict;
use HTML::BBReverse;
my $text = "server has high pings constantly (450ish - 2k) and restarts/crashes are starting to become an everyday thing ;[";
my $bbr = HTML::BBReverse->new();
print $bbr->parse($text);
__END__
This will result in a parsed string, excluding the last bracket. It will be stripped once parsed.