ytml-0.1.0 has been yanked.
YTML
A brand new markup language
How it works
It works like Typescript, which is transpiled into Javascript. ytml files can be transpiled into html
Syntax
Hello there
Is equivalent to
html(lang = "pt-br"){
body {
p.paragraph#first(color = "blue") {
Hello there
}
}
}
Also, with the multiply operator(*), you can avoid repetition, so
Hello!
Hello!
Hello!
Hello!
Can be wrote this way
html {
body {
p*4 {
Hello!
}
}
}