We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm not sure if this is an issue with ddox or dmd, but doc comments like this are handled wrong, which is a bit of a pain:
/// This function is here to aid in making your /// software do cool stuff. void foo() {}
ddox splits that into two ugly paragraphs:
This function is here to aid in making your software do cool stuff.
Instead of:
The text was updated successfully, but these errors were encountered:
Indeed is an issue in DMD, it gets output as "This function is here to aid in making your\n\nsoftware do cool stuff.\n" in the JSON document.
"This function is here to aid in making your\n\nsoftware do cool stuff.\n"
Sorry, something went wrong.
https://issues.dlang.org/show_bug.cgi?id=14413
@Abscissa can you have a look at the DMD issue? I'm in favor of your proposed behavior, but the bug report could use some more voices.
DMD Pull Request: dlang/dmd#4745
Glad that this got through at last.
No branches or pull requests
I'm not sure if this is an issue with ddox or dmd, but doc comments like this are handled wrong, which is a bit of a pain:
ddox splits that into two ugly paragraphs:
Instead of:
The text was updated successfully, but these errors were encountered: