Page MenuHomePhabricator

Nested tables not supported
Closed, DuplicatePublic

Description

The Remarkup documentation states that Remarkup rules can be used inside table cells and while this seems true for simple things like bold, italic, etc., you can't nest tables. This is kind of a big deal for our documentation which makes heavy use of nested tables.

See below for an example of the syntax that I'd expect to work.

<table>
  <tr>
    <td>simple cell</td>
    <td>
    | Pipe | Table | Syntax |
    </td>
    <td>
      <table><tr><td>HTML Table Syntax</td></tr></table>
    </td>
  </tr>
</table>

Rendered Preview:

simple cell | Pipe | Table | Syntax |
<table><tr><td>HTML Table Syntax</td></tr></table>
  </td>
</tr>

</table>

Event Timeline

jpoehls raised the priority of this task from to Needs Triage.
jpoehls updated the task description. (Show Details)
jpoehls added a project: Remarkup.
jpoehls added a subscriber: jpoehls.
chad triaged this task as Wishlist priority.Jun 17 2014, 9:12 PM