-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Module-Level Docstrings Pushed Down into Function Docstring #17
Comments
If it's any help, if I do something like below it works as it should. """
This module does something.
\namespace module_name
Here are some interesting things about it.
"""
def foo(bar):
"""Do foo on bar.
Args:
bar: a bar object
Returns:
The result of fooing a bar.
"""
pass |
Which options are you using? |
Sorry for the delay. I’m running the command with the -a and -c flags. The Doxypy config is: DOXYFILE_ENCODING = UTF-8
|
I'm currently running into an issue with module-level docstrings as
well. Using the code-snippet below, the module-level docstring
replaces the documentation for the foo function.
If I through an import between the the module-level docstring and then
the foo function, it works almost as expected. The foo function is
correctly documented but the module-level docstring does not show up
in the Doxygen results.
Any thoughts on how to fix this?
The text was updated successfully, but these errors were encountered: