Commit 518fccbb authored by albert-github's avatar albert-github

Bug 726722 - Blockquote followed by text inserts an extra paragraph

Remove superfluous \n from intermediate output.
parent 683ef76f
......@@ -1770,7 +1770,7 @@ static int writeBlockQuote(GrowBuf &out,const char *data,int size)
{
for (l=level;l<curLevel;l++)
{
out.addStr("\n</blockquote>\n");
out.addStr("</blockquote>\n");
}
}
curLevel=level;
......@@ -1783,7 +1783,7 @@ static int writeBlockQuote(GrowBuf &out,const char *data,int size)
// end of comment within blockquote => add end markers
for (l=0;l<curLevel;l++)
{
out.addStr("\n</blockquote>\n");
out.addStr("</blockquote>\n");
}
return i;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment