58 lines
912 B
Python
58 lines
912 B
Python
# -*- coding: utf-8 -*-
|
|
xhtmlInput = '''
|
|
<p>
|
|
<table class="plain">
|
|
<thead>
|
|
<tr>
|
|
<th class="align-right" align="right">Title column one<br /></th>
|
|
<th>title column two</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="align-right" align="right">Hi with a <a class="generated" href="http://easi.wallonie.be">http://easi.wallonie.be</a> <br /></td>
|
|
<td>fdff</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="align-right" align="right"><br /></td>
|
|
<td><br /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="align-right" align="left">Some text here<br />
|
|
<ul><li>Bullet One</li><li>Bullet Two</li>
|
|
<ul><li>Sub-bullet A</li><li>Sub-bullet B</li>
|
|
<ul><li>Subsubboulette<br /></li></ul>
|
|
</ul>
|
|
</ul>
|
|
</td>
|
|
<td>
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>SubTable</td>
|
|
<td>Columns 2<br /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<br /></p>
|
|
'''
|
|
|
|
xhtmlInput2 = '''
|
|
<ul><li>
|
|
<p>a</p>
|
|
</li><li>
|
|
<p>b</p>
|
|
</li><li>
|
|
<p>c</p>
|
|
</li>
|
|
<ul>
|
|
<li><p>SUB</p>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
'''
|