mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
Don't replace all double spaces
want to maintain the ability to format with the use of just text.
This commit is contained in:
parent
d8f3b7a9be
commit
8c461c7f9c
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class Entry:
|
||||||
self.journal.config['linewrap'],
|
self.journal.config['linewrap'],
|
||||||
initial_indent="| ",
|
initial_indent="| ",
|
||||||
subsequent_indent="| ",
|
subsequent_indent="| ",
|
||||||
drop_whitespace=False).replace(' ', ' ')
|
drop_whitespace=False)
|
||||||
for line in self.body.strip().splitlines()
|
for line in self.body.strip().splitlines()
|
||||||
])
|
])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue