From 0d1aa41899e8a1fe3bfaa79980fb596230705d7c Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Thu, 20 Jan 2022 00:56:55 -0800 Subject: [PATCH] Add markdown support in Doxygen to document scripting languages --- build.xml | 16 ++++++++++++---- buildtools/doxygen/Doxyfile | 6 ++++-- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/build.xml b/build.xml index 01006e5b7d..5fa3d72a3a 100644 --- a/build.xml +++ b/build.xml @@ -716,7 +716,9 @@ - + + + @@ -758,7 +760,9 @@ - + + + @@ -782,7 +786,9 @@ - + + + @@ -848,7 +854,9 @@ - + + + diff --git a/buildtools/doxygen/Doxyfile b/buildtools/doxygen/Doxyfile index 84cadd08d0..f4c3cd5698 100644 --- a/buildtools/doxygen/Doxyfile +++ b/buildtools/doxygen/Doxyfile @@ -875,7 +875,8 @@ WARN_LOGFILE = # Note: If this tag is empty the current directory is searched. INPUT = ./README.md \ - ./src/ + ./src/ \ + ./doc/scripting/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -904,7 +905,8 @@ INPUT_ENCODING = UTF-8 # comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, # *.vhdl, *.ucf, *.qsf and *.ice. -FILE_PATTERNS = *.java +FILE_PATTERNS = *.java \ + *.md # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well.