damian / trextile

Lightweight Textile to HTML conversion library written in JavaScript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trextile Build Status Code Climate

Trextile is a lightweight Textile to HTML conversion library written in JavaScript. You can find a demo here.

Getting started

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);

TODO

  • Tables
  • Attributes
  • Nested ordered and unordered lists

About

Lightweight Textile to HTML conversion library written in JavaScript.


Languages

Language:JavaScript 100.0%