Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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


```