use warnings; use strict; use Test::More 'no_plan'; use lib qw (lib ../lib); use MKDoc::Text::Structured; my $text = < > Hey, that's pretty cool! > Well, sort-of I think it's pretty cool... EOF my $res = MKDoc::Text::Structured::process ($text); like ($res, qr#

Hey, that\'s pretty cool!

#); like ($res, qr#

Well, sort-of

#); like ($res, qr#

I think it\'s pretty cool…

#); 1; __END__