Skip to content

Commit 1db8eef

Browse files
committed
issue #8713 external markdown links do not respect EXT_LINKS_IN_WINDOW
The setting of EXT_LINKS_IN_WINDOW was not taken into considerartion when transforming a markdown type link into a HTML link that is understood by doxygen.
1 parent e2a678b commit 1db8eef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/markdown.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1196,6 +1196,8 @@ int Markdown::processLink(const char *data,int,int size)
11961196
m_out.addStr(substitute(title.simplifyWhiteSpace(),"\"","""));
11971197
m_out.addStr("\"");
11981198
}
1199+
m_out.addStr(" ");
1200+
m_out.addStr(externalLinkTarget());
11991201
m_out.addStr(">");
12001202
content = content.simplifyWhiteSpace();
12011203
processInline(content.data(),content.length());

0 commit comments

Comments
 (0)