Textile

Native Rust crate for parsing and rendering into HTML the Textile markup language.
Documentation
Installation
Put this into Cargo.toml
:
toml
[dependencies]
textile = "*"
Usage
```rust
extern crate textile;
let html = textile::render("h1. Textile markup language");
asserteq!(html, "Textile markup language
".tostring());
```
Development Status
- [ ] Block elements
- [x] Block quotation
- [x] Code block
- [x] Heading
- [ ] Raw HTML
- [x] Comments
- [x] Pre-formatted text
- [x] Disable Textile formatting block element
- [x] Inline elements
- [x] Bold text
- [x] Italic text
- [x] Subscript text
- [x] Superscript text
- [x] Strikethrough text
- [x] Underlined text
- [x] Citation
- [x] Inline code
- [x] Link
- [x] Image
- [x] Abbreviations
- [x] Span element
- [x] Disable Textile formatting inline element
- [ ] Lists
- [ ] Bulleted list
- [ ] Numbered list
- [ ] Definition list
- [ ] Footnotes
- [ ] Tables
- [x] Attributes in elements
- [x] CSS properties, classes and ID's in elements
- [x] Unicode support