When using a Textbox, we can make words bold like the 'Test' text in the JSL below. However, if I want to display a dynamic variable in bold as well, how can I achieve that?
Variable = "Apple";
New Window( "test",
Text Box( "<b>Test</b>", <<Markup ),
Text Box( Variable ),
Text Box( "<b>Variable</b>", <<Markup ),
);