i'm trying edit javadocs of existing application java-8 compitable. don't wanna skip checking errors. wanna fix them. i've confused @ html tags i.e.:
<code></code> <ul></ul> <li></li> <ol></ol>
i know can use @code
<code></code>
etc. there many html tags , not allowed according javadoc. i've tried escape them, i.e.:
<code></code> <ul></ul> <li></li> <ol></ol>
however printed text @ javadoc usual, not html tags. can see writes <code></code>
@ corresponding places of javadoc.
how can fix such errors of javadoc @ java 8?
javadoc checks valid htmls @ java 8. so, should not need escape anything, obey rules valid html style.
Comments
Post a Comment