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
10
11
12
13
14
15
16
17
name = "markdown"
type = "logic"
xrml = '''
<?markdown file="doc.md"?>
'''
expected = '''
<h1>Hello</h1>
<p>This is a <em>markdown</em> fixture.</p>
'''

[[files]]
path = "doc.md"
content = '''
# Hello

This is a *markdown* fixture.
'''