* @param textile content formated with the Textile syntax
* @return the corresponding HTML markup
*/
private static String toHTML(String textile) {
// Converts the Textile markup into an HTML page
String html = new MarkupParser(new TextileLanguage()).parseToHtml(textile);
// Makes sure image paths are absolute, as otherwise the wrong route will be called. The following Textile markup:
//
// !images/help!
//