Quantcast
Channel: XWiki Forum - Latest topics
Viewing all articles
Browse latest Browse all 1373

content not grouped in table after conversion

$
0
0

Hello all,

when converting a HTML table like

<table>
  <tr>
    <td>Line continuations</td>
    <td><pre>
let example = Rx.Observable
        .combineLatest(obs1)
        .subscribe(...);</pre>
    </td>
  </tr>
  <tr>
    <td>Array Initialiser</td>
    <td>var numbers = [1, 2, 3];</td>
  </tr>
</table>

to XWiki 2.1 syntax using the rendering API you get

|Line continuations|

{{{
let example = Rx.Observable
        .combineLatest(obs1)
        .subscribe(...);}}}
|Array Initialiser|var numbers = [1, 2, 3];

The table is broken, because there is no grouping around the verbatim block.
I think it should look somewhat like this:

|Line continuations|(((
{{{let example = Rx.Observable
        .combineLatest(obs1)
        .subscribe(...);}}}
)))
|Array Initialiser|var numbers = [1, 2, 3];

1 post - 1 participant

Read full topic


Viewing all articles
Browse latest Browse all 1373

Trending Articles