File: simple_namespaces.xml

package info (click to toggle)
rust-libxml 0.3.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 596 kB
  • sloc: xml: 239; ansic: 45; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 470 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<r:root xmlns:h="http://example.com/ns/hello" xmlns:f="http://example.com/ns/farewell"
  xmlns:r="http://example.com/ns/root">

  <h:table>
    <h:tr>
      <h:td>col 1</h:td>
      <h:td>col 2</h:td>
    </h:tr>
  </h:table>

  <f:mock>
    <f:doublemock />
  </f:mock>

  <f:footer>
    <h:table>
      <h:tr>
        <h:td>col 3</h:td>
        <f:footer> nested f</f:footer>
      </h:tr>
    </h:table>
  </f:footer>
</r:root>