added linebreaks to the linequoter

This commit is contained in:
Blake DeMarcy 2017-03-03 19:38:20 -06:00
parent 3372f46a41
commit 2632a822ae
2 changed files with 2 additions and 1 deletions
clients/elisp
src

1
clients/elisp/help.txt Normal file

@ -0,0 +1 @@
aint nothin' yet

@ -24,5 +24,5 @@ def parse(text, doquotes=True):
if doquotes: if doquotes:
text = QUOTES.sub(r'<span post="\1" class="quote">\g<0></span>', text) text = QUOTES.sub(r'<span post="\1" class="quote">\g<0></span>', text)
return markdown( return markdown(
LINEQUOTES.sub(r'<span class="linequote">\1</span>', text) LINEQUOTES.sub(r'<span class="linequote">\1</span><br>', text)
) )