diff --git a/modules/html_generator.py b/modules/html_generator.py
index 08147bb7..40a56731 100644
--- a/modules/html_generator.py
+++ b/modules/html_generator.py
@@ -176,7 +176,7 @@ def convert_to_markdown(string):
elif stripped_line.startswith('-') or stripped_line.startswith('*') or stripped_line.startswith('+') or stripped_line.startswith('>') or re.match(r'\d+\.', stripped_line):
result += '\n'
else:
- result += '\n\n'
+ result += ' \n'
result = result.strip()
if is_code: