Community
Participate
Working Groups
Build Identifier: mylyn-wikitext-standalone-3.5.0.I20110104-0100 Examples: © becomes © ≥ becomes ≥ Reproducible: Always Steps to Reproduce: 1. Using MarkupParser programatically: public String toHtml(String textileContent) { StringWriter writer = new StringWriter(); HtmlDocumentBuilder builder = new HtmlDocumentBuilder(writer); builder.setEmitAsDocument(false); MarkupParser parser = new MarkupParser(); parser.setBuilder(builder); parser.setMarkupLanguage(new TextileLanguage()); parser.parse(textileContent); return writer.toString(); } 2. If 'textileContent' contains an HTML symbol, like '≥'; 3. Then the output for '≥' is '≥' This doesn't happen using textile reference implementation on http://textile.thresholdstate.com/
Thanks for the great bug report.
fixed
Created attachment 192581 [details] mylyn/context/zip