Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/juancarlospaco/nim-html-dsl

Nim HTML DSL
https://github.com/juancarlospaco/nim-html-dsl

bulma-css dsl html html5 nim nim-lang spectre-css

Last synced: about 1 month ago
JSON representation

Nim HTML DSL

Awesome Lists containing this project

README

        

# Nim-HTML-DSL

- [Nim](https://nim-lang.org) HTML DSL, [Domain Specific Language](https://en.wikipedia.org/wiki/Domain-specific_language) for HTML embedded on Nim lang code (Not a template engine).

![HTML DSL](https://raw.githubusercontent.com/juancarlospaco/nim-html-dsl/master/temp.png "HTML for Cats")

# Use

```nim
import html_dsl

const page = html:
heads:
title "Title"
meta(name="foo", content="bar")
bodys:
p "Powered by Nim Metaprogramming"
`

Nim


Example


Example



Powered by Nim Metaprogramming

Nim

Example


Example