BML is a sweet markup language that compiles to minified HTML.
Example
Input in BML:
Updated 10/24/21 in accordance with commit #c698b56
`body` {
`div align="center"` {
`h1` {
`Hello, World!`
//}
`br` { \\}
`h2` {
`It's BML time!`
//}
//}
//}
HTML output from BMLCC
<body><div align="center"><h1>Hello, World!</h1><br><h2>It's BML time!</h2></div></body>
Top comments (0)