From 0e88479db29c7f44dc30866b6e27c227c6c880fa Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Mon, 13 May 2019 21:58:04 +0200 Subject: [PATCH] JournalList: Remove # They are jarring, as reported by a user. --- lib/widgets/journal_list.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/widgets/journal_list.dart b/lib/widgets/journal_list.dart index 7a32dfc7..7185b9fb 100644 --- a/lib/widgets/journal_list.dart +++ b/lib/widgets/journal_list.dart @@ -78,6 +78,8 @@ class JournalList extends StatelessWidget { var body = journal.body; body = body.replaceAll("\n", " "); + body = body.replaceAll("#", ""); + body = body.trim(); var textTheme = Theme.of(context).textTheme; var children = [];