ANGEL MARKUP LANGUAGE

Simple data storage with no drama.

GitHub CI

ABOUT

Since I am currently working on the static-site generator oriented towards blogs called Acid, I need a data-storage format which allows comments and doesn't like drama. ANGEL MARKUP LANGUAGE is that format.

INSTALLATION

You should have the following tools installed and available from the command line:

To install Angel Markup, there are two options:

bash $ cargo install --git https://github.com/iamtheblackunicorn/angelmarkup

bash $ cargo install angelmarkup

This should make the amlc binary available from the command line.

USAGE

COMMAND LINE

Once you have correctly installed ANGELMARKUP, you should have the amlc binary available from the command line. You can use the compiler in the following ways:

```bash $ amlc --inf sample.aml --ouf sample.yml --yml

OR

$ amlc -i sample.aml -o sample.yml -y ```

```bash $ amlc --inf sample.aml --ouf sample.toml --tml

OR

$ amlc -i sample.aml -o sample.toml -t ```

```bash $ amlc --inf sample.aml --ouf sample.json --jsn

OR

$ amlc -i sample.aml -o sample.json -j ```

```bash $ amlc --version

OR

$ amlc -v ```

```bash $ amlc --help

OR

$ amlc -h ```

IN RUST PROJECTS

To use ANGELMARKUP in your projects, add this to your Cargo.toml:

TOML [dependencies] angelmarkup = "1.1.0"

To import ANGELMARKUP's functions, put this line of code inside your Rust code:

Rust use angelmarkup::*;

To refer to ANGELMARKUP's functions and structs, please click here.

CHANGELOG

Version 1.0.0

Version 1.1.0

NOTE