The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More tests => 2;

use_ok( 'Text::Markdown', 'markdown' );

my $str   = '<h1 class=center>foo</h1>';
my $m     = Text::Markdown->new;
my $html1 = $m->markdown($str);
like( $html1, qr/^$str/ );