summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 1c41b15..68f13c1 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -2114,14 +2114,14 @@ int Markdown::writeBlockQuote(const char *data,int size)
{
for (l=curLevel;l<level;l++)
{
- m_out.addStr("<blockquote>\n");
+ m_out.addStr("<blockquote>");
}
}
else if (level<curLevel) // quote level decreased => add end markers
{
for (l=level;l<curLevel;l++)
{
- m_out.addStr("</blockquote>\n");
+ m_out.addStr("</blockquote>");
}
}
curLevel=level;
@@ -2134,7 +2134,7 @@ int Markdown::writeBlockQuote(const char *data,int size)
// end of comment within blockquote => add end markers
for (l=0;l<curLevel;l++)
{
- m_out.addStr("</blockquote>\n");
+ m_out.addStr("</blockquote>");
}
return i;
}