The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use FindBin qw($Bin);
require "$Bin/20fulldocs-text-multimarkdown.t";
my $docsdir = "$Bin/docs-pythonmarkdown2-tm-cases-pass";
my @files = get_files($docsdir);
tidy();
plan tests => scalar(@files) + 1;
use_ok('Text::MultiMarkdown');
my $m = Text::MultiMarkdown->new(
use_metadata => 0,
heading_ids => 0, # Remove MultiMarkdown behavior change in <hX> tags.
img_ids => 0, # Remove MultiMarkdown behavior change in <img> tags.
);
{
local $TODO = 'Not many of the python markdown tests pass, but they ran off and did their own thing';
run_tests($m, $docsdir, @files);
};