SOX
SOX (Simple Outline XML) is a new way to type in XML. SOX makes it really easy to write XML, it uses the indentation (ŕ la Python) to get rid of all the closing tags. For instance:
<br />html><br /> head><br /> title> Hello<br /> body><br /> h1> Title<br /> p> A little text with a<br /> a> href=http://link<br /> link<br /> .<br />
would render to something like (untested):
<br /><html><br /> <head><br /> <title> Hello </title> <br /> </head><br /> <body><br /> <h1> Title </h1><br /> <p> A little text with a<br /> <a href="http://link"><br /> link </a><br /> . </p><br /> </body><br /></html><br />
That really seems great! SOX is implemented in Java (source included).
[Via Curtis Duhn’s Motherlog]
One comment