amu/README.md

35 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2021-10-02 22:12:57 +00:00
# AMU
AMU is a human readable markup language I made for my own uses and to learn. It is the first lexer and parser that I have written by hand.
---
### Purpose
2021-10-04 17:05:24 +00:00
The purpose of this project is to create a markup language for my own use. I have previously added features to other markup languages, but this caused issues in multiple cases. I decided to create a markup language myself instead.
2021-10-02 22:12:57 +00:00
---
### Usage
2021-10-04 17:05:24 +00:00
This repo is a library for parsing AMU. It can be imported and used like any other go library.
#### `amu`
In `cmd/amu`, there is a binary that will read from Stdin with no arguments, or from a file given as the first argument. It will output the generated HTML.
#### `amulive`
In `cmd/amulive`, there is a Gtk app that has a text box on the left and a webview on the right. It displays the generated HTML on the right as you type into the text box.
2021-10-02 22:12:57 +00:00
---
### Syntax
2021-10-04 17:05:24 +00:00
The syntax for most of AMU's features can be seen in `test.amu` in this repo.
2021-10-02 22:12:57 +00:00
---
### Performance
2021-10-04 17:05:24 +00:00
Timing this program using `test.amu`, I consistently get 4ms run time. This is much faster than my previous modified markup languages. It is likely unnoticeable in most cases, but interesting nonetheless.