The M.JS program didn't convert the special characters "<" and ">" into HTML equivalent and therefore anything between these two HTML tag characters are not displayed. If you wish to display these characters, do the following to the M.JS file:
1) Add the following function:
function cvSpecial(txt) {
return txt.replace(/&/g, "&").replace(/>/g, ">").replace(/</g, "<").replace(/"/g, """);
}
2) modify the following line in the "drawRect" function:
else el.innerHTML = "<div style='"+styleStr+"'> " + cvSpecial(txt) + " </div>"