Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 695 Bytes

README.textile

File metadata and controls

43 lines (27 loc) · 695 Bytes

stextile

A simple textile parser, designed to be good enough to parse the formatting used in DailyJS articles.

Installation

npm install stextile

Usage

In a Node project:

var textile = require('stextile');

textile('h1. A header');

In the shell:

$ stextile file.textile

# HTML printed to stdout

TO-DO

  • Footnotes
  • Acronyms
  • Benchmarks
  • Optimisation
  • Attributes for inline elements
  • Indentation

Notes

https://github.com/jgm/peg-markdown/blob/master/markdown_parser.leg
https://github.com/jgarber/redcloth/blob/master/ragel/redcloth_scan.rl

License

The MIT License.