doccy

Crates.iodoccy
lib.rsdoccy
version0.3.2
sourcesrc
created_at2018-09-21 10:44:49.624861
updated_at2019-12-19 06:49:16.549689
descriptionDoccy is a simple brace based markup language.
homepage
repositoryhttps://gitlab.com/anarchistmae/doccy-rs
max_upload_size
id85795
size43,476
(wtfsophia)

documentation

README

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.

  • Implied paragraphs and line breaks

  • Simple curley brace based element syntax

  • Support for all body HTML elements

  • Command line interface

Examples

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

# <p>your document <em>here</em></p>
echo "your document {em: here}" | doccy to-html
Commit count: 0

cargo fmt