added linebreaks to the linequoter

pull/4/head
Blake DeMarcy 2017-03-03 19:38:20 -06:00
parent 3372f46a41
commit 2632a822ae
2 changed files with 2 additions and 1 deletions

View File

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

View File

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