Commit cf573e2c authored by Luke Mewburn's avatar Luke Mewburn
Browse files

*.xml, *.xsd: reformat using xmllint

Reformat the .xml and .xsd files using
	env XMLLINT_INDENT="    " xmllint --encode UTF-8 --format FILENAME.xml

Notable (non-whitespace) changes to the existing files:
- Ensure the <xml ...> header has encoding="UTF-8".
- <xs:schema ...> collapsed to one line and some attribute reordered.
- Empty tags are converted to self-closing tags. E.g.
	<xs:element name="Name" type="Type"></xs:element:>
  becomes
	<xs:element name="Name" type="Type"/>
- Some xmlns related attributes are reordered.

Per discussion with rapporteurs and Mark Canterbury.
parent d0b92b60
Pipeline #14121 passed with stages
in 41 seconds
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment