# 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](https://docs.rs/doccy/latest/doccy/) for more information about [Doccy syntax](https://docs.rs/doccy/latest/doccy/#syntax) and provided APIs.
- Implied paragraphs and line breaks
- Simple curley brace based element syntax
- Support for all body HTML elements
- Command line interface
## Examples
### Rust
```rust
extern crate doccy;
use doccy::doccy_to_html;
fn main() {
match doccy_to_html("your document {em: here}") {
// <p>your document <em>here</em></p>
Ok(html) => println!("{}", html),
Err(error) => {}
};
}
```
### Command line
```bash
# <p>your document <em>here</em></p>