text = escapeHTMLEntities( text );
section = escapeHTMLEntities( section );
Element el = new Element("a");
el.setAttribute("class",CLASS_TYPES[type]);
el.setAttribute("href",link+section);
el.addContent(text);
return el;
}
private Element makeLink( int type, String link, String text, String section, Iterator attributes )
{