summaryrefslogtreecommitdiffstats
path: root/src/mandocvisitor.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-03 16:33:14 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-03 16:33:14 (GMT)
commit3ecf263fa2cd5f6a1cbb06c3e34c5aa77b9a5b66 (patch)
treedad8144b4f89ad1ec8e3dd643e8d4c6d96086565 /src/mandocvisitor.cpp
parenta606bdd949a4d6d126cd9d3425f65c23e345b62e (diff)
parent83db204cd8839b0bbe49e9ba1dc90f7519e34f71 (diff)
downloadDoxygen-3ecf263fa2cd5f6a1cbb06c3e34c5aa77b9a5b66.zip
Doxygen-3ecf263fa2cd5f6a1cbb06c3e34c5aa77b9a5b66.tar.gz
Doxygen-3ecf263fa2cd5f6a1cbb06c3e34c5aa77b9a5b66.tar.bz2
Merge branch 'fetaure/bug_html_ins_del_tag' of https://github.com/albert-github/doxygen into albert-github-fetaure/bug_html_ins_del_tag
Diffstat (limited to 'src/mandocvisitor.cpp')
-rw-r--r--src/mandocvisitor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mandocvisitor.cpp b/src/mandocvisitor.cpp
index 9f5a45b..7b7194e 100644
--- a/src/mandocvisitor.cpp
+++ b/src/mandocvisitor.cpp
@@ -137,9 +137,11 @@ void ManDocVisitor::visit(DocStyleChange *s)
m_firstCol=FALSE;
break;
case DocStyleChange::Strike:
+ case DocStyleChange::Del:
/* not supported */
break;
case DocStyleChange::Underline: //underline is shown as emphasis
+ case DocStyleChange::Ins:
if (s->enable()) m_t << "\\fI"; else m_t << "\\fP";
m_firstCol=FALSE;
break;