Re: error: malformed HTML

2023-12-11 Thread Bradley Willcott
Hi, The problem is: "**" is a malformed tag. Try this: "<*StringVerification*>" (without the double-quotes of-course). Regards Brad. On 11/12/23 20:15, Arbol One wrote: I am trying to use this html expression when documenting a class /** var list = new ArrayList(); */ , but I get an err

Re: error: malformed HTML

2023-12-11 Thread Thad Humphries
Use {@code var list = new ArrayList();} See https://docs.oracle.com/javase/1.5.0/docs/tooldocs/windows/javadoc.html#{@code} On Mon, Dec 11, 2023 at 7:17 AM Arbol One wrote: > I am trying to use this html expression when documenting a class > > /** > > var list = new ArrayList(); > > */ > > , bu

Re: error: malformed HTML

2023-12-11 Thread Luis Iglesias
Hi Try to replace that string by var list = new ArrayList() El lun, 11 dic 2023 a las 13:17, Arbol One () escribió: > I am trying to use this html expression when documenting a class > > /** > > var list = new ArrayList(); > > */ > > , but I get an error from JavaDoc saying: >

error: malformed HTML

2023-12-11 Thread Arbol One
I am trying to use this html expression when documenting a class /** var list = new ArrayList(); */ , but I get an error from JavaDoc saying: * error: malformed HTML * "var list = new ArrayList();"* What am I doing wrong!? Thanks in advance -- ArbolOne Using Fire Fox and Thunderbird.