summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-09-24 19:46:00 (GMT)
committerGitHub <noreply@github.com>2020-09-24 19:46:00 (GMT)
commit198165cc87a10dd92d1822d36496045f832b51f5 (patch)
tree6d117cbe1d501ff013b8b9edd6dabc5d5fbf2b90 /src/markdown.cpp
parent8b02332343aded8a7ce4ced6c3484a7114620f3b (diff)
parentb5e77b66a4cea0fbfc011f90993a098bd6651e09 (diff)
downloadDoxygen-198165cc87a10dd92d1822d36496045f832b51f5.zip
Doxygen-198165cc87a10dd92d1822d36496045f832b51f5.tar.gz
Doxygen-198165cc87a10dd92d1822d36496045f832b51f5.tar.bz2
Merge pull request #8045 from albert-github/feature/bug_md_fenced_cnt
Miscounting of lines in case of fenced code block
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 2e6ab3e..8e259a3 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -2264,7 +2264,7 @@ void Markdown::writeFencedCodeBlock(const char *data,const char *lng,
}
addStrEscapeUtf8Nbsp(data+blockStart,blockEnd-blockStart);
m_out.addStr("\n");
- m_out.addStr("@endcode\n");
+ m_out.addStr("@endcode");
}
QCString Markdown::processQuotations(const QCString &s,int refIndent)