Trextile is a lightweight Textile to HTML conversion library written in JavaScript. You can find a demo here.
The interface to Trextile is incredibly simple. It consumes a Textile string, and outputs HTML using the toHtml method.
var html = new Trextile('my *textile* string').toHtml();
// prints "<p>my <strong>textile</strong> string<p>"
console.log(html);
- Tables
- Attributes
- Nested ordered and unordered lists