Hello fellow JSL scripters,
I'm trying to use an ampersand in a Text Box() call while also using the <<Markup command, and I'm coming across some issues. Apparently, the <<Markup send command formats text with specified HTML tags.
As an example, here's some JSL that I thought should work, but doesn't.
w = New Window( "Formatted Text",
Text Box( "This is <b>bold</b> text. This is <b><i>bold italic</i></b> text, & this is <u>underlined</u> text.",
<<Markup) );
Instead, I get this as the output and an error in the log:

Warning: unterminated entity "&" encountered. -- Turning off markup flag -- This is <b>bold</b> text. This is <b><i>bold italic</i></b> text & is <u>underlined</u> text.
DisplayBox[EvalContextBox]
I would have thought this would be easy to find a solution to, but JMP Help, Scripting Index, Scripting Guide, and searches don't really talk about this specific issue. I did try the HTML tag &, and it doesn't work.
Thanks for any help!,
DS