summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-10-20 13:29:25 (GMT)
committerGitHub <noreply@github.com>2020-10-20 13:29:25 (GMT)
commitf29fcff2647803f23b4852a5c4eb69cebda79a3e (patch)
tree5f0a9037214f6911cc5123e54be0859d8f30e10c /src/markdown.cpp
parent1c3129fc8803d1034ea95a59acc2af4fa02c031a (diff)
parent39db9f48e6376b62f28c9b85320dd62f76547765 (diff)
downloadDoxygen-f29fcff2647803f23b4852a5c4eb69cebda79a3e.zip
Doxygen-f29fcff2647803f23b4852a5c4eb69cebda79a3e.tar.gz
Doxygen-f29fcff2647803f23b4852a5c4eb69cebda79a3e.tar.bz2
Merge pull request #8117 from albert-github/feature/bug_cnt_md_ref_image
Miscounting of line in case of markdown `\ref` image
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 20dc9ab..e395fd9 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -784,7 +784,7 @@ void Markdown::writeMarkdownImage(const char *fmt, bool explicitTitle,
m_out.addStr(title);
m_out.addStr("\"");
}
- m_out.addStr("\n");
+ m_out.addStr("\\ilinebr");
}
int Markdown::processLink(const char *data,int,int size)