markerml

Crates.iomarkerml
lib.rsmarkerml
version0.1.2
created_at2024-11-14 00:05:28.73821+00
updated_at2024-11-14 00:20:20.435745+00
descriptionSimple markup and templating language, that is transpiled to HTML.
homepage
repositoryhttps://github.com/rchuk/markerml
max_upload_size
id1447251
size10,129
Ruslan Omelchuk (rchuk)

documentation

https://docs.rs/markerml/latest/markerml/

README

MarkerML

General

This library is a top level crate for MarkerML, which provides function that attempts to convert given MarkerML code to HTML. MarkerML stands for Marker Markup Language. It's a simple language for formatting and layouting text similar to HTML.

Syntax is described in details on docs.rs.

Example

box {
    header[1](Hello, world!)
    paragraph(Some text)
    box[horizontal] {
        @(Wow)
    }
    box[vertical, x_align = "center"] {
        @(Wow)
    }
}
Commit count: 25

cargo fmt