Crates.io | textile |
lib.rs | textile |
version | 0.2.1 |
source | src |
created_at | 2016-10-28 10:47:16.660348 |
updated_at | 2016-12-04 18:16:53.450298 |
description | Native Rust crate for parsing and rendering into HTML the Textile markup language |
homepage | https://github.com/pavchip/textile-rs |
repository | https://github.com/pavchip/textile-rs |
max_upload_size | |
id | 7023 |
size | 78,803 |
Native Rust crate for parsing and rendering into HTML the Textile markup language.
Put this into Cargo.toml
:
[dependencies]
textile = "*"
extern crate textile;
let html = textile::render("h1. *Textile markup language*");
assert_eq!(html, "<h1><strong>Textile markup language</strong></h1>".to_string());