Simple Outline XML
This article may have been previously nominated for deletion: Wikipedia:Articles for deletion/Simple Outline XML exists. It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. This message has remained in place for seven days, so the article may be deleted without further notice. Find sources: "Simple Outline XML" – news · newspapers · books · scholar · JSTOR Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Simple Outline XML|concern=Fails [[WP:NSOFT]]}} ~~~~ Timestamp: 20250316001830 00:18, 16 March 2025 (UTC) Administrators: delete |
Simple Outline XML (SOX) is a compressed way of writing XML.
SOX uses indenting to represent the structure of an XML document, eliminating the need for closing tags.
Example
The following XHTML markup fragment:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Sample page</title>
</head>
<body>
<p>A very brief page</p>
</body>
</html>
... would appear in SOX as:
html> xmlns=http://www.w3.org/1999/xhtml head> title> Sample page body> p> A very brief page
SOX can be readily converted to XML.
See also
- Haml is a meta-XHTML representation, originally implemented for Ruby and has a similar mark-up structure.