use strict; use warnings; use Test::More tests => 2; use_ok( 'Text::Markdown' ); my $m = Text::Markdown->new(trust_list_start_value => 1); my $html1 = $m->markdown(<<"EOF"); 1. this 2. is a list Paragraph. 3. and we 4. pick up EOF my $want = <<'EOF';
  1. this
  2. is a list

Paragraph.

  1. and we
  2. pick up
EOF is($html1, $want, "we can use numbering from start marker");