summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-03-23 15:50:06 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-03-23 15:50:06 (GMT)
commitbfc2c287b1d01057b7eaf64a43573aa4f01c7e32 (patch)
tree3ccac5272f8c11223429277ea0a2974ad4388293 /src/markdown.cpp
parent2a4c230bda1877024bfd2bc8b38a392b74bd2ea5 (diff)
parentcc39c80d99215a9e83b814e37231f3142d285b4e (diff)
downloadDoxygen-bfc2c287b1d01057b7eaf64a43573aa4f01c7e32.zip
Doxygen-bfc2c287b1d01057b7eaf64a43573aa4f01c7e32.tar.gz
Doxygen-bfc2c287b1d01057b7eaf64a43573aa4f01c7e32.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 98b06f4..1939ace 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -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;
}