You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a fenced code block contains markdown, the markdown is rendered and the fenced code block is ignored. I'm using Perl 5.22.0 and Text::MultiMarkdown 1.000035.
Here's a test case.
use strict;
use warnings;
use Text::MultiMarkdown 'markdown';
my $text = <<'EOF';
```
# This is a test
```
EOF
my $html = markdown($text);
print "$html\n";
Expected result:
<p><code>
# This is a test
</code></p>
Actual result:
<p>```</p>
<h1 id="thisisatest">This is a test</h1>
<p>```</p>
The text was updated successfully, but these errors were encountered:
When a fenced code block contains markdown, the markdown is rendered and the fenced code block is ignored. I'm using Perl 5.22.0 and Text::MultiMarkdown 1.000035.
Here's a test case.
Expected result:
Actual result:
The text was updated successfully, but these errors were encountered: