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

Bug 726722 - Blockquote followed by text inserts an extra paragraph

Remove superfluous \n from intermediate output.
parent 683ef76f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}