No description
  • Odin 66.1%
  • Makefile 33.9%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-13 10:23:00 +01:00
examples/basic initial commit 2026-09-13 10:23:00 +01:00
.gitignore initial commit 2026-09-13 10:23:00 +01:00
Makefile initial commit 2026-09-13 10:23:00 +01:00
mdparse.odin initial commit 2026-09-13 10:23:00 +01:00
ols.json initial commit 2026-09-13 10:23:00 +01:00
README initial commit 2026-09-13 10:23:00 +01:00

             __                               
.--------.--|  |.-----.---.-.----.-----.-----.
|        |  _  ||  _  |  _  |   _|__ --|  -__|
|__|__|__|_____||   __|___._|__| |_____|_____|
                |__|                          

---



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