diff --git a/clients/elisp/help.txt b/clients/elisp/help.txt
new file mode 100644
index 0000000..0c77d98
--- /dev/null
+++ b/clients/elisp/help.txt
@@ -0,0 +1 @@
+aint nothin' yet
diff --git a/src/formatting.py b/src/formatting.py
index ec7e48f..0e4f4fb 100644
--- a/src/formatting.py
+++ b/src/formatting.py
@@ -24,5 +24,5 @@ def parse(text, doquotes=True):
if doquotes:
text = QUOTES.sub(r'\g<0>', text)
return markdown(
- LINEQUOTES.sub(r'\1', text)
+ LINEQUOTES.sub(r'\1
', text)
)