cppalliance / mrdocs

MrDocs: A Clang/LLVM tool for building reference documentation from C++ code and javadoc comments.
https://mrdocs.com
Other
66 stars 16 forks source link

feat: input filters #542

Closed alandefreitas closed 4 months ago

alandefreitas commented 4 months ago

This PR implements the input filters needed by Boost.URL.

Example:

# Input
input:
  # Directories that contain documented source files
  include:
    - ../include
  # Patterns to filter out the source-files in the directories
  file-patterns:
    - '*.hpp'

which would be equivalent to the doxygen options INPUT and FILE_PATTERNS.