Skip to content

Instantly share code, notes, and snippets.

@calaveraInfo
Last active March 6, 2017 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calaveraInfo/35f0bab3e192e60f021a57f344a4c947 to your computer and use it in GitHub Desktop.
Save calaveraInfo/35f0bab3e192e60f021a57f344a4c947 to your computer and use it in GitHub Desktop.
Testing some XML format for project
<?xml version="1.0" encoding="UTF-8"?>
<result>
<status>success</status>
<html xmlns="http://www.w3.org/1999/xhtml">
<a id="email">somebody@example.com</a>
<span id="filename">file.ext</span>
<table>
<thead>
<tr>
<th>Dodavatel</th>
<th>Operace</th>
<th>Status</th>
<th>Potvrzuje</th>
<th>VS</th>
<th>VIN</th>
<th>Cena</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nějaký dodavatel</td>
<td>Nějaká operace</td>
<td>Nějaký status</td>
<td>Někdo, kdo potvrzuje</td>
<td>123456</td>
<td>9876543210</td>
<td>100 000</td>
</tr>
<tr>
<td>Nějaký jiný dodavatel</td>
<td>Nějaká jiná operace</td>
<td>Nějaký jiný status</td>
<td>Někdo jiný, kdo potvrzuje</td>
<td>123456</td>
<td>9876543210</td>
<td>200 000</td>
</tr>
</tbody>
</table>
</html>
</result>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment