Model structured documents with elements, attributes, namespaces, schemas, parsing, and transformations.
Lessons
See how DOCX and XLSX use packaged XML.
XML in Office Documents is easiest to learn by reading the example, changing it, and observing the result.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="theme" value="dark"/>
<add key="pageSize" value="20"/>
</appSettings>
<connectionStrings>
<add name="main" provider="postgres" host="localhost"/>
</connectionStrings>
</configuration>Practice the XML in Office Documents example in a small scratch file, then explain what changed and why.