xrml 0.1.0

eXtensible Rust Markup Language — recursive acronym: HRML (HRML Markup Language) and TRML (TOML-like Markup Language)
Documentation
1
2
3
4
5
6
7
8
9
name = "self_closing_bind"
type = "logic"
xrml = '''
<?bind var="title"?>Bound Title<?/bind?>
<h1><?get id="title"?></h1>
'''
expected = '''
<h1>Bound Title</h1>
'''