The list of methods to do HTML Create are organized into topic(s).
void
bold() bold
if (isColored) {
System.out.print("\u001b[1m");
String
bold(String text) bold
return new StringBuffer().append("<b>").append(text).append("</b>").toString();
String
boldenRefOrType(String label) If the label contains ref= or type= the substring containing the named portion of the attribute will be surrounded with html bold tags e.g., input param
return
int it = label.indexOf(" type");
if (it < 0) {
it = label.indexOf(" ref");
if (it < 0) {
return label;
int iq1 = label.indexOf('"', it);
...