Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kiranandcode/ocaml-pug
Pug(lite) parser & compiler in OCaml
https://github.com/kiranandcode/ocaml-pug
html ocaml pug
Last synced: 26 days ago
JSON representation
Pug(lite) parser & compiler in OCaml
- Host: GitHub
- URL: https://github.com/kiranandcode/ocaml-pug
- Owner: kiranandcode
- License: agpl-3.0
- Created: 2023-01-29T15:32:31.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-08T10:42:22.000Z (over 1 year ago)
- Last Synced: 2024-07-20T19:13:02.699Z (4 months ago)
- Topics: html, ocaml, pug
- Language: OCaml
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# OCaml-Pug
> OCaml-Pug is a parser/compiler for a pug-like language in pure OCaml
Essentially, no need to run node or any other JS shenanigans, while
still being able to quickly prototype HTML.Examples:
```pug
html
body
h1 Title
```becomes:
```html
Title
```