This issue is similar to #339, but this time it's about > instead of <.
- According to the XML specification, the left angle bracket (
<) MUST be escaped. (no problem)
- The right angle bracket (
>), however, doesn't need to be.
The right angle bracket (>) may be represented using the string " > ", and MUST, for compatibility, be escaped
Borrowing @amroamroamro's example, you can see here that this document is valid
<?xml version="1.0"?>
<Person AgeCategory=">3" ></Person>

Using prettify, the highlighting gets unfortunately broken.

Source: OpenUI5 Walkthrough
This issue is similar to #339, but this time it's about
>instead of<.<) MUST be escaped. (no problem)>), however, doesn't need to be.Borrowing @amroamroamro's example, you can see here that this document is valid
Using prettify, the highlighting gets unfortunately broken.