Skip to content

Commit

Permalink
fix: adding new line each prose subpart gets added to final subpart
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
  • Loading branch information
AleJo2995 committed Sep 19, 2023
1 parent 951130b commit f64d67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trestle/core/control_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def _gap_join(a_str: str, b_str: str) -> str:
b_clean = b_str.strip()
if not b_clean:
return a_clean
gap = '\n' if a_clean else ''
gap = '\n\n' if a_clean else ''
return a_clean + gap + b_clean

@staticmethod
Expand Down

0 comments on commit f64d67a

Please sign in to comment.