diff options
author | albert-github <albert.tests@gmail.com> | 2018-12-03 10:41:11 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-12-03 10:41:11 (GMT) |
commit | f4a16c46b29817ab0847555a2a51e4fa556e4f16 (patch) | |
tree | 2fde66127f19ae94d8ec1888e4b67d852a8a15f5 /src | |
parent | d33a129d784f2b0f823f14a008e929513b302ad3 (diff) | |
download | Doxygen-f4a16c46b29817ab0847555a2a51e4fa556e4f16.zip Doxygen-f4a16c46b29817ab0847555a2a51e4fa556e4f16.tar.gz Doxygen-f4a16c46b29817ab0847555a2a51e4fa556e4f16.tar.bz2 |
Incorrect tag sequence for xhtml with latexinclude command possible
Analogous to DontInclude (test 21) the wrong xhtml tag sequence can also occur with `\latexinclude`
Diffstat (limited to 'src')
-rw-r--r-- | src/htmldocvisitor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index 2223ed9..484af1b 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -173,6 +173,7 @@ static bool isDocIncludeVisible(DocInclude *s) switch (s->type()) { case DocInclude::DontInclude: + case DocInclude::LatexInclude: return FALSE; default: return TRUE; |