diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-29 19:05:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-29 19:05:36 (GMT) |
commit | 6fe6275cd66c7842d6817fd4b8ea0a47b2b5df20 (patch) | |
tree | 4e41232fe7c39253acbcf09252e6db5ec6342031 | |
parent | 6a04051970cf66330a0a3bce49abf9f4f60b6d17 (diff) | |
parent | 062257aee6b51deb6bfd64a5a9a3583cd333048c (diff) | |
download | Doxygen-6fe6275cd66c7842d6817fd4b8ea0a47b2b5df20.zip Doxygen-6fe6275cd66c7842d6817fd4b8ea0a47b2b5df20.tar.gz Doxygen-6fe6275cd66c7842d6817fd4b8ea0a47b2b5df20.tar.bz2 |
Merge pull request #7220 from albert-github/feature/issue_7218
issue #7218 Doxygen parsing word documents
-rw-r--r-- | doc/starting.doc | 1 | ||||
-rw-r--r-- | src/config.xml | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/starting.doc b/doc/starting.doc index f9ae9a2..154cc03 100644 --- a/doc/starting.doc +++ b/doc/starting.doc @@ -128,6 +128,7 @@ Extension | Language | Extension | Language | Extension | Language .hpp |C / C++ | | | | | .h++ |C / C++ | | | | | .mm |C / C++ | | | | | +.txt |C / C++ | | | | | Any other extension is not parsed unless it is added to \ref cfg_file_patterns "FILE_PATTERNS" and the appropriate diff --git a/src/config.xml b/src/config.xml index e68b3d7..d206203 100644 --- a/src/config.xml +++ b/src/config.xml @@ -1404,7 +1404,9 @@ FILE_VERSION_FILTER = "cleartool desc -fmt \%Vn" <value name='*.markdown'/> <value name='*.md'/> <value name='*.mm'/> - <value name='*.dox'/> + <value name='*.dox' desc='(to be provided as doxygen C comment)'/> + <value name='*.doc' desc='(to be provided as doxygen C comment)'/> + <value name='*.txt' desc='(to be provided as doxygen C comment)'/> <value name='*.py'/> <value name='*.pyw'/> <value name='*.f90'/> |