No description
- Odin 66.1%
- Makefile 33.9%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| examples/basic | ||
| .gitignore | ||
| Makefile | ||
| mdparse.odin | ||
| ols.json | ||
| README | ||
__
.--------.--| |.-----.---.-.----.-----.-----.
| | _ || _ | _ | _|__ --| -__|
|__|__|__|_____|| __|___._|__| |_____|_____|
|__|
---
Usage
-----
To use this library in your project, add it to your ols.json collections:
{
"collections": [
{
"name": "mdparse",
"path": "path/to/mdparse"
}
]
}
Then import it in your code:
import "mdparse:."
Development
-----------
Run checks:
make check
Run tests:
make test
Generate documentation:
make doc
Run the example:
make example