]> Git — Sourcephile - haskell/symantic-xml.git/blob - test/Golden/XML/Read/NS/0009.xml
Add indentation support in XML.Write
[haskell/symantic-xml.git] / test / Golden / XML / Read / NS / 0009.xml
1 <?xml version='1.0'?>
2 <Beers>
3 <!-- the default namespace inside tables is that of HTML -->
4 <table xmlns='http://www.w3.org/1999/xhtml'>
5 <th><td>Name</td><td>Origin</td><td>Description</td></th>
6 <tr>
7 <!-- no default namespace inside table cells -->
8 <td><brandName xmlns="">Huntsman</brandName></td>
9 <td><origin xmlns="">Bath, UK</origin></td>
10 <td>
11 <details xmlns=""><class>Bitter</class><hop>Fuggles</hop>
12 <pro>Wonderful hop, light alcohol, good summer beer</pro>
13 <con>Fragile; excessive variance pub to pub</con>
14 </details>
15 </td>
16 </tr>
17 </table>
18 </Beers>