diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-21 17:52:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-21 17:52:23 (GMT) |
commit | 5c9d812083af06c9e683c9ff2e32f5839066863c (patch) | |
tree | 7ff5bacf7b93c6c6e37d164534784470481bcae7 /doc | |
parent | ebefc53b60276e38270fe19251045b46b285e23d (diff) | |
parent | faafe83a69d2f3c27daca0974c9a063bdb81ecdc (diff) | |
download | Doxygen-5c9d812083af06c9e683c9ff2e32f5839066863c.zip Doxygen-5c9d812083af06c9e683c9ff2e32f5839066863c.tar.gz Doxygen-5c9d812083af06c9e683c9ff2e32f5839066863c.tar.bz2 |
Merge pull request #6957 from cfriedt/feature/cfriedt/6955/allow-javadoc-style-comment-blocks-with-a-doxyfile-variable
Allow Javadoc-style comment blocks with a Doxyfile variable
Diffstat (limited to 'doc')
-rw-r--r-- | doc/docblocks.doc | 19 | ||||
-rw-r--r-- | doc/doxygen_manual.tex | 2 |
2 files changed, 21 insertions, 0 deletions
diff --git a/doc/docblocks.doc b/doc/docblocks.doc index d4eab5d..9d14f6e 100644 --- a/doc/docblocks.doc +++ b/doc/docblocks.doc @@ -123,6 +123,25 @@ or ///////////////////////////////////////////////// \endverbatim +or + +\verbatim +/************************************************ + * ... text + ***********************************************/ +\endverbatim + +as long as JAVADOC_BANNER = YES is used. +\include javadoc-banner.h + \htmlonly + Click <a href="examples/javadoc-banner/html/index.html">here</a> + for the corresponding HTML documentation that is generated by doxygen. + \endhtmlonly + \latexonly + See \hyperlink{javadoc_banner_example}{Javadoc Banner example} + for the corresponding \mbox{\LaTeX} documentation that is generated by doxygen. + \endlatexonly + </ol> For the brief description there are also several possibilities: diff --git a/doc/doxygen_manual.tex b/doc/doxygen_manual.tex index 1a44574..5265b9b 100644 --- a/doc/doxygen_manual.tex +++ b/doc/doxygen_manual.tex @@ -178,6 +178,8 @@ Written by Dimitri van Heesch\\[2ex] \subinputfrom{../html/examples/file/latex/}{refman_doc} \chapter{Fn Example}\label{fn_example}\hypertarget{fn_example}{} \subinputfrom{../html/examples/func/latex/}{refman_doc} +\chapter{Javadoc Banner Example}\label{javadoc_banner_example}\hypertarget{javadoc_banner_example}{} +\subinputfrom{../html/examples/javadoc-banner/latex/}{refman_doc} \chapter{Overload Example}\label{overload_example}\hypertarget{overload_example}{} \subinputfrom{../html/examples/overload/latex/}{refman_doc} \chapter{Page Example}\label{page_example}\hypertarget{page_example}{} |