TablePress inserts “nl” for additional tags
-
I’m maintaining the table by creating an html-table on my own and imprting it ot table press. The column may contain links (<a href=…>link>text</a>) tags. Is fine with one tag. But if I want to have mor such tags in one column, tablepress add a newline cmd <br/> before and to the end of each one. And it does this for each row for this column.
Example:
<tbody>
<tr>
<td>
<a href=…>text1</a>
<a href=…>text2</a>
</td>
</tr>
</tbody>results to
<tbody>
<tr>
<td>
<br/>
<a href=…>text1</a><br/>
<a href=…>text2</a><br/>
</td>
</tr>
</tbody>
Is it possible to avoid the newlines?The page I need help with: [log in to see the link]
You must be logged in to reply to this topic.