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
Describe the bug Markdown not properly applied to Java files
Expected behaviour Markdown properly applied to Java files
Screenshots
To Reproduce Steps to reproduce the behavior, ideally with an example project
// temp.java /** * Title A~~<br> * Title B~~ * * Body description~ */ class A { ... }
I expected like below.
Title A~~ Title B~~
but showing
Even looking at the html file, it was �checked that the br-tag disappeared. It only happens in .java files.
Dokka configuration
Installation
Additional context Add any other context about the problem here
Are you willing to provide a PR? Providing a PR can drastically speed up the process of fixing this bug
The text was updated successfully, but these errors were encountered:
Hi! Java's Javadoc format does not support Markdown, it only supports HTML-like tags, so this is the intended behaviour
This page has a lot of examples of what's possible with Javadoc.
In your particular case, this should work:
/** * Title A~~ * <p> * Title B~~ */
Also worth noting that Javadoc support is not ideal at the moment, and not all tags may work.
Sorry, something went wrong.
JFYI: <br> should probably be supported as an html tag, it's mentioned in #2262 already
<br>
Closing this issue since <br> is not related to the description about markdown support.
@IgnatBeresnev thanks for your reply
No branches or pull requests
Describe the bug
Markdown not properly applied to Java files
Expected behaviour
Markdown properly applied to Java files
Screenshots
To Reproduce
Steps to reproduce the behavior, ideally with an example project
I expected like below.
Title A~~
Title B~~
but showing
Title A~~ Title B~~
Even looking at the html file, it was �checked that the br-tag disappeared. It only happens in .java files.
Dokka configuration
Installation
Additional context
Add any other context about the problem here
Are you willing to provide a PR?
Providing a PR can drastically speed up the process of fixing this bug
The text was updated successfully, but these errors were encountered: