summaryrefslogtreecommitdiffstats
path: root/src/printdocvisitor.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-04-04 12:43:57 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-04-04 12:43:57 (GMT)
commit83db204cd8839b0bbe49e9ba1dc90f7519e34f71 (patch)
treedfcbdeebcf380f2a71228f6fb80b893f46503a6d /src/printdocvisitor.h
parent16d025c8a08b485f5d43ade0986d716bd6aa06f8 (diff)
downloadDoxygen-83db204cd8839b0bbe49e9ba1dc90f7519e34f71.zip
Doxygen-83db204cd8839b0bbe49e9ba1dc90f7519e34f71.tar.gz
Doxygen-83db204cd8839b0bbe49e9ba1dc90f7519e34f71.tar.bz2
Adding HTML tags ins and del
Github does not support the `<u>` tag for underlined text, in HTML there exists the tag `<ins>`. On https://www.w3schools.com/tags/tag_ins.asp is written: The `<ins>` tag defines a text that has been inserted into a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<ins>` element with the following default values: ``` ins { text-decoration: underline; } ``` analogous there exists the tag `<del>` (https://www.w3schools.com/tags/tag_del.asp): The `<del>` tag defines text that has been deleted from a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<del>` element with the following default values: ``` del { text-decoration: line-through; } ``` Definitions analogue to the underline and strike through tag the implementation for the other formats has been chosen.
Diffstat (limited to 'src/printdocvisitor.h')
-rw-r--r--src/printdocvisitor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/printdocvisitor.h b/src/printdocvisitor.h
index 26bb3e7..1472110 100644
--- a/src/printdocvisitor.h
+++ b/src/printdocvisitor.h
@@ -108,9 +108,15 @@ class PrintDocVisitor : public DocVisitor
case DocStyleChange::Strike:
if (s->enable()) printf("<strike>"); else printf("</strike>");
break;
+ case DocStyleChange::Del:
+ if (s->enable()) printf("<del>"); else printf("</del>");
+ break;
case DocStyleChange::Underline:
if (s->enable()) printf("<underline>"); else printf("</underline>");
break;
+ case DocStyleChange::Ins:
+ if (s->enable()) printf("<ins>"); else printf("</ins>");
+ break;
case DocStyleChange::Italic:
if (s->enable()) printf("<italic>"); else printf("</italic>");
break;