summaryrefslogtreecommitdiffstats
path: root/src/docbookvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-07-07 12:47:33 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-07-07 12:47:33 (GMT)
commitb4e535197890521306d30e0713ca8b88a98f7bf7 (patch)
tree7c3470e8c80883bab3c1fffac2881721d5b76e7e /src/docbookvisitor.cpp
parent21c4175dbc32b57165a6d7af3e8620700f044e7c (diff)
downloadDoxygen-b4e535197890521306d30e0713ca8b88a98f7bf7.zip
Doxygen-b4e535197890521306d30e0713ca8b88a98f7bf7.tar.gz
Doxygen-b4e535197890521306d30e0713ca8b88a98f7bf7.tar.bz2
Bug 667993 - HTML tags <u> and </u> not supported
Added underline possibility and strike through possibility for the different output formats insofar it is possible (other similar possibilities are not always possible for all output formats either).
Diffstat (limited to 'src/docbookvisitor.cpp')
-rw-r--r--src/docbookvisitor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp
index ab10da0..b83317c 100644
--- a/src/docbookvisitor.cpp
+++ b/src/docbookvisitor.cpp
@@ -196,6 +196,8 @@ void DocbookDocVisitor::visit(DocStyleChange *s)
/* There is no equivalent Docbook tag for rendering Small text */
case DocStyleChange::Small: /* XSLT Stylesheets can be used */ break;
/* HTML only */
+ case DocStyleChange::Strike: break;
+ case DocStyleChange::Underline: break;
case DocStyleChange::Div: /* HTML only */ break;
case DocStyleChange::Span: /* HTML only */ break;
}