diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-03 16:39:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-03 16:39:51 (GMT) |
commit | 02179159a31af83785e10eb01d80b3a4620a7699 (patch) | |
tree | 590fc4b64192d90fa1e107194386fc82636fd3db /src/mandocvisitor.cpp | |
parent | a606bdd949a4d6d126cd9d3425f65c23e345b62e (diff) | |
parent | 64cec1b3b347792c10995e0cd2be48ffa3ce8041 (diff) | |
download | Doxygen-02179159a31af83785e10eb01d80b3a4620a7699.zip Doxygen-02179159a31af83785e10eb01d80b3a4620a7699.tar.gz Doxygen-02179159a31af83785e10eb01d80b3a4620a7699.tar.bz2 |
Merge branch 'albert-github-fetaure/bug_html_ins_del_tag'
Diffstat (limited to 'src/mandocvisitor.cpp')
-rw-r--r-- | src/mandocvisitor.cpp | 2 |
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; |