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
What did that source use to render? What does it render now? Using the command-line tool, it looks like it just puts the source between <p> and </p>, w/o parsing any markdown between:
$ dart bin/markdown.dart
Sample class [String]\n<pre> A\n B\n</pre>^D
<p>Sample class [String]\n<pre> A\n B\n</pre></p>
Uh oh!
There was an error while loading. Please reload this page.
Upgraded to 2.1.0 from 2.0.3 and see a test failure in dartdoc with text like
Sample class [String]\n<pre> A\n B\n</pre>
markdown removes the whitespace before
A
andB
, usingHtmlRenderer().render
.The text was updated successfully, but these errors were encountered: