Are there any modules in CPAN to convert YAML lists to well formed XML?
From YAML:
- fruits:
- apple
- pear
- orange
To XML:
<fruits>
<apple />
<pear />
<orange />
</fruits>
Are there any modules in CPAN to convert YAML lists to well formed XML?
From YAML:
- fruits:
- apple
- pear
- orange
To XML:
<fruits>
<apple />
<pear />
<orange />
</fruits>