AI Generated Cheatsheets

XML Cheatsheet

Unique Features

Elements

<element_name attribute_name="attribute_value">
  Element content
</element_name>

Attributes

<element_name attribute_name="attribute_value">
  Element content
</element_name>

Comments

<!-- Comment text -->

Processing Instructions

<?instruction_name instruction_data?>

Entities

<!ENTITY entity_name "entity_value">

Namespaces

<namespace_prefix:element_name xmlns:namespace_prefix="namespace_URI">
  Element content
</namespace_prefix:element_name>

Document Type Definition (DTD)

<!DOCTYPE root_element_name [
  <!ELEMENT element_name (child_element_name)>
  <!ATTLIST element_name attribute_name attribute_type "default_value">
]>

Resources