diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-26 12:35:01 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-26 12:35:01 (GMT) |
commit | 2d3a014e62dce6f93e959ef6106ecc9167729967 (patch) | |
tree | dc73c573077513a68ddb24f4d84c8b1c5f0ed3fc /src/htmldocvisitor.cpp | |
parent | 9901c06e250aca3b4b01b9038b7eed5af05b8398 (diff) | |
parent | 5b1eaf616f0edd430637d31eae51eea26fbac408 (diff) | |
download | Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.zip Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.tar.gz Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.tar.bz2 |
Merge branch 'feature/bug_html_s' of https://github.com/albert-github/doxygen into albert-github-feature/bug_html_s
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r-- | src/htmldocvisitor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index 3fbbf12..424fead 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -406,6 +406,9 @@ void HtmlDocVisitor::visit(DocStyleChange *s) case DocStyleChange::Bold: if (s->enable()) m_t << "<b" << htmlAttribsToString(s->attribs()) << ">"; else m_t << "</b>"; break; + case DocStyleChange::S: + if (s->enable()) m_t << "<s" << htmlAttribsToString(s->attribs()) << ">"; else m_t << "</s>"; + break; case DocStyleChange::Strike: if (s->enable()) m_t << "<strike" << htmlAttribsToString(s->attribs()) << ">"; else m_t << "</strike>"; break; |