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
And is really clickable
The text was updated successfully, but these errors were encountered:
1st issue: See parses following declaration:
@see [[https://somewhere.com]] into prefix and link. In this case @see is prefix and https://somewhere.com is a link
@see [[https://somewhere.com]]
@see
https://somewhere.com
and then it transforms it into:
@see <a href="https://somewhere.com" />
which javadoc does not like:
error: element not closed: a * @see <a href="https://www.postgresql.org/docs/9.5/index.html PostgreSql documentation"/> ^
2nd issue: scaladoc also suggest:
@see [[https://somewhere.com Some human readable description]]
but this is not parsed by See in BaseCommments.scala at all
the only way to have a comment is to have something like:
@see <a href="https://db.apache.org/derby/docs/10.1/ref">https://db.apache.org/derby/docs/10.1/ref/</a>
Sorry, something went wrong.
No branches or pull requests
And is really clickable
The text was updated successfully, but these errors were encountered: