Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(java): rendering of
@see
hyperlink leads to errors (#3554)
JavaDoc complains about unexpected text when seeing: ``` @see https://example.com/path ``` Apparently it needs to be: ``` @see <a href="https://example.com/path">...</a> ``` Change the JavaDoc renderer. --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
- Loading branch information