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 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.
ArbolOne is composed of students and volunteers dedicated to providing free 
services to charitable organizations.
ArbolOne on Java Development is in progress [ í ]


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();
>
> */
>
> , 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.
> ArbolOne is composed of students and volunteers dedicated to providing free 
> services to charitable organizations.
> ArbolOne on Java Development is in progress [ í ]
>
>

-- 
"Hell hath no limits, nor is circumscrib'd In one self-place; but where we
are is hell, And where hell is, there must we ever be" --Christopher
Marlowe, *Doctor Faustus* (v. 111-13)


Re: error: malformed HTML

2023-12-11 Thread Luis Iglesias
Hi
Try to replace that string by
var list = new ArrayListStringVerification()

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  * "var list = new
> ArrayList();"*
>
> What am I doing wrong!?
>
> Thanks in advance
> --
> ArbolOne
> Using Fire Fox and Thunderbird.
> ArbolOne is composed of students and volunteers dedicated to providing free 
> services to charitable organizations.
> ArbolOne on Java Development is in progress [ í ]
>
>


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.
ArbolOne is composed of students and volunteers dedicated to providing free 
services to charitable organizations.
ArbolOne on Java Development is in progress [ í ]