// SIML can do fancy-pants tabby HTML:
section
header > h1 'Hi there!'
p 'This is a demo of SIML'
p 'Try typing something...'
p > small
'
Tip: Tick "Force curlies?" if you
wanna force SIML to parse without paying
attention to indentation level.
'
hr //-------------------------------------------
// SIML can do HTML that looks like CSS
form {
fieldset {
label {
for: "your-name";
text: "Enter something..."
}
input.something#your-name {
placeholder: " something ";
}
}
}
hr //-------------------------------------------
// SIML can do one-liners with vowelless quick tags:
ftr>(strng{'SIML'} 'is on ' a[href='//git.io/siml']'Github')