// if it doesn't create one and add it to the head node
//
TagNode meta = headNode.findElementByAttValue("http-equiv", "content-type", true, false);
if (meta == null) {
meta = new TagNode(META_TAG);
meta.addAttribute("http-equiv", "Content-Type");
headNode.getChildren().add(0, meta);
}
//
// Force UTF into lowercase
//