$macro SUBTITLE TITLE:string/r>
<$exec command=('HSCCaps "' + TITLE + '" 5 4') include>
$macro> <$macro CAPS /CLOSE BIG:num=5 SMALL:num=4> <$exec command=('HSCCaps "' + Hsc.Content + '" ' + BIG + ' ' + SMALL) include> $macro>
HSCCaps "Example" 5 4
And it will produce:
<font size=5>E</font><font size=4>XAMPLE</font>
I can assure you that it will look nice in a HTML browser.
It is most convienient to use
<$macro CAPS /CLOSE BIG:num=5 SMALL:num=4>
<$exec command=('HSCCapitals "' + Hsc.Content + '" ' + BIG + ' ' + SMALL) include>
</$macro>
Have a good fun.