Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alsotang/yantl

Yet another nonsense templating language.
https://github.com/alsotang/yantl

Last synced: 13 days ago
JSON representation

Yet another nonsense templating language.

Awesome Lists containing this project

README

        

Yantl
=====

Yet another nonsense templating language.

Example
-------

[source]
----
!doctype(html)
html(lang="en") {
head {
meta(charset="utf-8")
title { "Yantl example" }
}
body {
h1#title {
"hello world"
}
h2(style="font-size: 0.75em;")#subtitle {
"from Yanti"
}
section#content {
"blah blah blah"
"on the same line, blah blah blah";
"on a new line, blah blah blah"
}
}
----

[source,html]
----



Yantl example


hello world


from Yanti



blah blah blah
on the same line, blah blah blah


on a new line, blah blah blah

----