use warnings; use strict; use Test::More 'no_plan'; use lib qw (lib ../lib); use MKDoc::Text::Structured; my $text = <
  • Hello, \*I will not

  • #); like ($res, qr#
  • be bold\*

  • #); like ($res, qr#
  • but

  • #); like ($res, qr#
  • I will be

  • #); like ($res, qr#

    This is a paragraph. \*Nothing in this paragraph#); like ($res, qr#is going to be bold.

    #); like ($res, qr#

    Nor in this one\*.

    #); 1; __END__