Add markdown support in Doxygen to document scripting languages
This commit is contained in:
parent
40b3a8d7af
commit
0d1aa41899
2 changed files with 16 additions and 6 deletions
16
build.xml
16
build.xml
|
|
@ -716,7 +716,9 @@
|
|||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${buildroot}/stendhal-server-${version}/doc">
|
||||
<fileset dir="doc"/>
|
||||
<fileset dir="doc">
|
||||
<exclude name="scripting/"/>
|
||||
</fileset>
|
||||
<fileset dir="." includes="LICENSE.txt"/>
|
||||
</copy>
|
||||
|
||||
|
|
@ -758,7 +760,9 @@
|
|||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${buildroot}/stendhal-${version}/doc">
|
||||
<fileset dir="doc"/>
|
||||
<fileset dir="doc">
|
||||
<exclude name="scripting/"/>
|
||||
</fileset>
|
||||
<fileset dir="." includes="LICENSE.txt"/>
|
||||
</copy>
|
||||
<touch file="${buildroot}/stendhal-${version}/log/stendhal.txt" />
|
||||
|
|
@ -782,7 +786,9 @@
|
|||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${buildroot}/stendhal-${version}/doc">
|
||||
<fileset dir="doc"/>
|
||||
<fileset dir="doc">
|
||||
<exclude name="scripting/"/>
|
||||
</fileset>
|
||||
<fileset dir="." includes="LICENSE.txt"/>
|
||||
</copy>
|
||||
<copy todir="${buildroot}/stendhal-${version}" file="README.md"/>
|
||||
|
|
@ -848,7 +854,9 @@
|
|||
</fileset>
|
||||
</copy>
|
||||
<copy todir="${buildroot}/stendhal-${version}-src/doc">
|
||||
<fileset dir="doc"/>
|
||||
<fileset dir="doc">
|
||||
<exclude name="scripting/"/>
|
||||
</fileset>
|
||||
<fileset dir="." includes="LICENSE.txt"/>
|
||||
</copy>
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue