diff options
author | Chris Luke <chrisy@flirble.org> | 2016-09-01 14:31:46 -0400 |
---|---|---|
committer | Chris Luke <chrisy@flirble.org> | 2016-09-01 14:31:46 -0400 |
commit | 16bcf7d8dcd411e6a6b8d217cce5e450f7357bb3 (patch) | |
tree | 4c59b98b9b357150af939c035ec4e8776bac2b2e /doxygen/doxygen.cfg | |
parent | f074eef0409a64475e840f59581306273313b218 (diff) |
VPP-346 A swathe of doc fixes
Fixes various Doxygen warnings and other structural defects.
Note: This does not attempt to improve the content of the
documentation; only to improve the syntax and structure of it
and in some cases the consistency.
Change-Id: Ib1915f33edbdbc4558c85565de80dce323193906
Signed-off-by: Chris Luke <chrisy@flirble.org>
Diffstat (limited to 'doxygen/doxygen.cfg')
-rw-r--r-- | doxygen/doxygen.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doxygen/doxygen.cfg b/doxygen/doxygen.cfg index 82687cac42c..4eb0f373049 100644 --- a/doxygen/doxygen.cfg +++ b/doxygen/doxygen.cfg @@ -234,6 +234,7 @@ ALIASES = ALIASES += "node=@xrefitem nodes \"Node Identifier\" \"Node Identifiers\" @c " ## Formatting for CLI commands and output +ALIASES += "cli{1}=<code><pre>\1</code></pre>" ALIASES += "clistart=<code><pre>" ALIASES += "cliend=</pre></code>" @@ -914,6 +915,7 @@ INPUT_FILTER = FILTER_PATTERNS = \ *.c=$(ROOT)/doxygen/filter_c.py \ + *.h=$(ROOT)/doxygen/filter_h.py \ *.api=$(ROOT)/doxygen/filter_api.py # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using @@ -2035,7 +2037,7 @@ SEARCH_INCLUDES = YES # preprocessor. # This tag requires that the tag SEARCH_INCLUDES is set to YES. -INCLUDE_PATH = $(INPUT) +INCLUDE_PATH = $(INCLUDE_PATH) # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the |