I have a docstring in the beginning of a Python script that Doxygen parses perfectly. However, if I add #!/usr/bin/env python in the beginning of the file (to make the script executable), the entire docstring is not recognized by Doxygen.
So, how can I make Doxygen ignore this first line?
Example of a working docstring:
"""@package HelloWorld
This is a docstring and it's recognized by doxygen."""
Example of a non-working docstring:
#!/usr/bin/env python
"""@package HelloWorld
This is a docstring and it's not recognized by doxygen because of the first line."""
Thanks!