0

I need to have a table inside of a numbered list in ScrewTurn Wiki.

Unfortunately there doesn't seem to be much (any) documentation out there on how to do something like that.

Here is example markup:

# list item 1
# list item with table
{| 
|- 
! Column1 !! Column2
|- 
| Stuff1 || Stuff2
|}
# list item 4

If I look at that in the Wiki it generates the list numbers correctly, but instead of a table I see just the markup.

Any idea how to get that to render to a table?

CodeRedick
  • 7,346
  • 7
  • 46
  • 72

1 Answers1

0

Try adding blank lines above and below the table markup. eg.

# list item 1
# list item with table

{| 
|- 
! Column1 !! Column2
|- 
| Stuff1 || Stuff2
|}

# list item 4
Doug Knudsen
  • 935
  • 9
  • 15