diff --git a/lib/utils/markdown.dart b/lib/utils/markdown.dart index 6237afaf..0ad65ae5 100644 --- a/lib/utils/markdown.dart +++ b/lib/utils/markdown.dart @@ -27,15 +27,15 @@ String replaceMarkdownChars(String line) { line = line.replaceFirst('- [x]', '☑'); line = line.replaceFirst('- [X]', '☑'); - line = replaceListChar(line, '*'); - line = replaceListChar(line, '-'); - line = replaceListChar(line, '+'); + line = replaceListChar(line, '* '); + line = replaceListChar(line, '- '); + line = replaceListChar(line, '+ '); return line; } String replaceListChar(String line, String char) { - const String bullet = '•'; + const String bullet = '• '; var starPos = line.indexOf(char); if (starPos == 0) {