We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 555a1c5 commit 2e35497Copy full SHA for 2e35497
lib/src/markdown_processor.dart
@@ -981,7 +981,7 @@ class Documentation {
981
inlineSyntaxes: _markdown_syntaxes,
982
blockSyntaxes: _markdown_block_syntaxes,
983
linkResolver: _linkResolver);
984
- List<String> lines = text.replaceAll('\r\n', '\n').split('\n');
+ List<String> lines = LineSplitter.split(text).toList();
985
return document.renderLinesToHtml(lines, processFullDocs);
986
}
987
0 commit comments