aboutsummaryrefslogtreecommitdiff
path: root/Doxyfile.in
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-11-15 09:23:10 -0500
committerNick Mathewson <nickm@torproject.org>2019-11-15 09:23:10 -0500
commit625ad6538248cb2ffba7bc2aebb894e91f1a0872 (patch)
tree692922630dbcdb32d69aaca61ed69b6e3cb44122 /Doxyfile.in
parent108d2967a7d492d6bdaf03a294491495452ba214 (diff)
downloadtor-625ad6538248cb2ffba7bc2aebb894e91f1a0872.tar.gz
tor-625ad6538248cb2ffba7bc2aebb894e91f1a0872.zip
Doxygen: expect .md files, not .dox files
Also, I have to add src/rust/registry to the excluded paths, since it includes .md files that Doxygen can't handle.
Diffstat (limited to 'Doxyfile.in')
-rw-r--r--Doxyfile.in9
1 files changed, 5 insertions, 4 deletions
diff --git a/Doxyfile.in b/Doxyfile.in
index c8b85f7508..c99f536e60 100644
--- a/Doxyfile.in
+++ b/Doxyfile.in
@@ -320,7 +320,7 @@ OPTIMIZE_OUTPUT_SLICE = NO
# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
# the files are not read by doxygen.
-EXTENSION_MAPPING = dox=md h=C c=C inc=C
+EXTENSION_MAPPING = dox=md h=C c=C inc=C md=md
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
@@ -847,8 +847,8 @@ INPUT_ENCODING = UTF-8
FILE_PATTERNS = *.c \
*.h \
- *.dox \
- *.inc
+ *.inc \
+ *.md
# The RECURSIVE tag can be used to specify whether or not subdirectories should
# be searched for input files as well.
@@ -865,7 +865,8 @@ RECURSIVE = YES
EXCLUDE = ./src/ext \
./src/trunnel \
- ./src/test
+ ./src/test \
+ ./src/rust/registry
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded