You can edit almost every page by Creating an account and confirming your email.

Kept on Wikipedia:Simple Outline XML

From EverybodyWiki Bios & Wiki

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.

Sources


This article "Simple Outline XML" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:Simple Outline XML. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.