I am trying to have a (simple) unordered list in a table cell in an Asciidoc document. I use asciidoctor
.
I tried the following:
|===
| One | Two
| Foo
|
- Bar
- Baz
|===
But this results in the last cell having simply the text - Bar - Baz
as a simple string, no list formatting. I would like it to be formatted as a list, on two lines, with a bullet on each line. Any idea?