Currently javadoc tags such as {@link }, {@code }, {@literal } are pasted as is into the documentation. Instead they should be resolved:
{@code ...} shoud be transformed to HTML code tag.
{@literal ...} has to be escaped properly (maybe CDATA section)
{@link[plain] ...} has at least to be stripped so the plain name is shown. If JavaDoc URL is set then it should be transformed to a hyperlink just as done by javadoc.
{@value ...} should be resolved to the referenced value is in javadoc.
are there additional inline tags? I have to check... These are the ones I use daily.
Currently javadoc tags such as {@link }, {@code }, {@literal } are pasted as is into the documentation. Instead they should be resolved:
code
tag.