mbakeranalecta / sam

Semantic Authoring Markdown
Other
79 stars 8 forks source link

Name attributes for insertion #159

Closed dram closed 6 years ago

dram commented 6 years ago

Seems that name attributes (and also ids) for insertion will be lost after translation to XML, e.g.:

article: Foo

        >>>(image bar.png)(#baz)

Output:

<?xml version="1.0" encoding="UTF-8"?>
<article>
<title>Foo</title>
<insert item="bar.png" type="image"/>
</article>
mbakeranalecta commented 6 years ago

Fixed in 6d1f8eaea275c009ed9abb3cbc2d65bfd9c6e2c5.

dram commented 6 years ago

Thanks, fix confirmed.