Possibly an experiment: display 245$ as Title Case.
Signed-off-by: Jeff Godin <jgodin@tadl.org>
FOR sub IN titresults;
IF sub.getAttribute('code') == 'a';
titresults_content.push(tc.title(sub.textContent));
+ ELSIF sub.getAttribute('code') == 'b';
+ titresults_content.push(tc.title(sub.textContent));
ELSE;
titresults_content.push(sub.textContent);
END;
FOR sub IN titsubs;
IF sub.getAttribute('code') == 'a';
titsubs_content.push(tc.title(sub.textContent));
+ ELSIF sub.getAttribute('code') == 'b';
+ titsubs_content.push(tc.title(sub.textContent));
ELSE;
titsubs_content.push(sub.textContent);
END;