Reto
unread,Nov 13, 2011, 11:34:09 AM11/13/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to chm2pdf
It seems that only the first #00FF00 is removed after a link! A regex
too greedy maybe?
Original table:
<table>
<tr>
<td bgcolor="#00ff00">row 1, col1</td>
<td bgcolor="#00ff00">row 1, col2</td>
<td bgcolor="#00ff00">row 1, col3</td>
</tr>
<tr>
<td bgcolor="#00ff00">row 2, col1</td>
<td bgcolor="#00ff00">row 2, col2 <a href="P1.htm"> here a link to
page 1</a></td>
<td bgcolor="#00ff00">row 2, col3</td>
</tr>
<tr>
<td bgcolor="#00ff00">row 3, col1</td>
<td bgcolor="#00ff00">row 3, col2</td>
<td bgcolor="#00ff00">row 3, col3</td>
</tr>
</table>
Same table in Work directory:
<table>
<tr>
<td bgcolor="">row 1, col1</td>
<td bgcolor="#00ff00">row 1, col2</td>
<td bgcolor="#00ff00">row 1, col3</td>
</tr>
<tr>
<td bgcolor="#00ff00">row 2, col1</td>
<td bgcolor="#00ff00">row 2, col2 <a href="temp0001.html"> here a link
to page 1</a></td>
<td bgcolor="">row 2, col3</td>
</tr>
<tr>
<td bgcolor="#00ff00">row 3, col1</td>
<td bgcolor="#00ff00">row 3, col2</td>
<td bgcolor="#00ff00">row 3, col3</td>
</tr>
</table>