added linebreaks to the linequoter
parent
3372f46a41
commit
2632a822ae
|
@ -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)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue