How do i get the <?xml element from the xml language?
Hi,
when using the mps xml language in a generator, i can start the document only with a SimpleElement. However, i need a <?xml version="1.0" encoding="UTF-8"?> first.
I can not use SimpleElement, because in generates:
<?xml version="1.0" encoding="UTF-8" standalone="yes">
...
</?xml)
Which concept should i use?
Dan
when using the mps xml language in a generator, i can start the document only with a SimpleElement. However, i need a <?xml version="1.0" encoding="UTF-8"?> first.
I can not use SimpleElement, because in generates:
<?xml version="1.0" encoding="UTF-8" standalone="yes">
...
</?xml)
Which concept should i use?
Dan
Please sign in to leave a comment.
Is there any solution to generate the first line within xml language ?
<?xml version="1.0"?>
<!DOCTYPE Gruss [
<!ELEMENT Gruss (#PCDATA)>
]>
<Gruss>Hallo Jupiter!</Gruss>
Best,
Dan