Hi Community,
The script below creates a journal with wrapped text. However, when I save this as an HTML file, the text is no longer wrapped. How can I maintain formatting from the journal to an HTML file?
win= New Window("Metrics",
<<journal,
hlb = H List Box(
Spacer Box(size(400,1000)),
V List Box( Spacer Box(size(10,10)), cb = H Center Box(), Spacer Box() ),
Spacer Box(size(400,1000))
)
);
cb<<append(tb1=text box("Metrics Generated "||char(format(today(),"m/d/y"))));
tb1<<set font size(28)<< Justify Text( "Center" )<<set wrap width(1000);
current Journal()<<save html();