Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alsotang/yantl
- Owner: alsotang
- Created: 2015-07-17T08:03:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-18T19:08:54.000Z (over 9 years ago)
- Last Synced: 2024-11-03T17:04:54.257Z (2 months ago)
- Size: 136 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.asciidoc
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
----