Doccy

Doccy is a simple brace based markup language, an alternative to writing HTML for people who enjoy the power and flexibility but do not enjoy writing it.

Features:

See the latest documentation for more information about Doccy syntax and provided APIs.

Examples

Rust

```rust extern crate doccy;

use doccy::doccytohtml;

fn main() { match doccytohtml("your document {em: here}") { //

your document here

Ok(html) => println!("{}", html), Err(error) => {} }; } ```

Command line

```bash

your document here

echo "your document {em: here}" | doccy to-html ```