About Download Docs Changes

Pipes in links break tables

I you make a labeled link inside a table cell, the pipe character that divides the link target and the label gets interpreted as a cell separator. This is not desirable, link markup should take precedence.

Example:

|table|[[link|label]]|

results in:

<table><tr>
  <td>table></td>
  <td>[[link</td>
  <td>label]]</td>
</tr><table>

while it should be

<table><tr>
  <td>table></td>
  <td><a href="link">label</a></td>
</tr><table>

This needs a change in how the table markup is parsed. Fixed in 1.3.3dev. Now you can use pipes in links, code spans and images.


Issues, Fixed Bugs