ucg/examples/test_xml.ucg

30 lines
763 B
Plaintext
Raw Permalink Normal View History

2018-12-11 17:35:12 -06:00
let doc = {
2018-12-12 20:26:19 -06:00
root = {
ns = {
prefix = "myns",
uri = "http://example.com",
},
name = "top",
attrs = {id = "foo"},
children = [
{
ns = "http://example.org/",
name = "child1",
attrs = { attr1 = "value1", attr2 = "value2"},
children = [
"inner text node",
{
name = "myns:grandchild",
children = [
{
text = "Another text node",
},
],
},
],
},
],
},
2018-12-11 17:35:12 -06:00
};
out xml doc;