A backtick centered extensible templating language inspired by Javascript template litterals.
h1`A title`
This is a paragraph.
This is b`another` paragraph.
You can also inject expressions, for example now we are in $year.
If you really need variables they can be used ${x = 12} like so $x.
Also links link[`www.github.com`]`this is a link to github.com`.
This can be extened with text preprocessors and postprocessors that manipulate the text.
use`markdown`
# Better syntax
Also for **bold** and _italic_.
- Make things recursive a scoped
- The output is a structured list of strings and "compound blocks"
- Choose between
foobar(`A parameter`, b = `Another parameter`)`Some text`andfoobar[`A parameter`, b = `Another parameter`]`Some text` - Add "raw" blocks for edge cases.