Hi everyone
I'm fairly new to XML, I started reading about it a few weeks ago
I read about the new features in XML 1.1 and I understand that the main difference is that it allows for more characters
Now, I tried looking for XML files that are well-formed 1.1 but not well-formed 1.0 but I couldn't find any such examples. So I tried to make my own, please tell me if what I say is right:
1. In 1.1, Mongolian and Amharic letters are allowed as element names, but in 1.0 it will not be well-formed
2. The following is well-formed because it has characters that are allowed in 1.1
<?xml version="1.1"?>
<root>   </root>
3. The following is NOT well-formed because it's 1.0
<?xml version="1.0"?>
<root>   </root>
Am I correct?
I'm fairly new to XML, I started reading about it a few weeks ago
I read about the new features in XML 1.1 and I understand that the main difference is that it allows for more characters
Now, I tried looking for XML files that are well-formed 1.1 but not well-formed 1.0 but I couldn't find any such examples. So I tried to make my own, please tell me if what I say is right:
1. In 1.1, Mongolian and Amharic letters are allowed as element names, but in 1.0 it will not be well-formed
2. The following is well-formed because it has characters that are allowed in 1.1
<?xml version="1.1"?>
<root>   </root>
3. The following is NOT well-formed because it's 1.0
<?xml version="1.0"?>
<root>   </root>
Am I correct?