Remove Doxygen filter that is no longer needed

This commit is contained in:
David Rowe 2021-05-12 10:54:15 +12:00
parent bd812e58aa
commit 2130dea965
3 changed files with 3 additions and 12 deletions

View file

@ -1031,7 +1031,7 @@ IMAGE_PATH =
# need to set EXTENSION_MAPPING for the extension otherwise the files are not
# properly processed by doxygen.
INPUT_FILTER = jsdoc-filter.pl
INPUT_FILTER =
# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
# basis. Doxygen will compare the file name with each pattern and apply the

View file

@ -45,8 +45,8 @@ option in the "Wizard" tab of the Doxywizard program.
## Altering the Doxygen configuration
Most easily accomplished by using the Doxyfile GUI and using it to write a new `Libraries.Doxyfile` file.
Alternatively, you can edit the `Libraries.Doxyfile` file in a text editor.
This is most easily accomplished by using the Doxyfile GUI and using it to write a new `Doxyfile` file.
Alternatively, you can edit the `Doxyfile` configuration file in a text editor.
## References

View file

@ -1,9 +0,0 @@
# Filter out JSDoc comments by transforming them to ordinary comments.
# (JSDoc comments are used to generate the user API docs and don't produce suitable results for the C++ docs.)
while (<>) {
if (m/^\s*\/\*\*jsdoc/) {
print "\/*\n";
} else {
print;
}
}