From 2632a822aecec10c7fb010873947b0781785378d Mon Sep 17 00:00:00 2001 From: Blake DeMarcy Date: Fri, 3 Mar 2017 19:38:20 -0600 Subject: [PATCH] added linebreaks to the linequoter --- clients/elisp/help.txt | 1 + src/formatting.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 clients/elisp/help.txt 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) )