I often have a need to put Asciidoc-formatted text in columns, but this has been causing Asciidoc to fail lately. For example, the following table
[cols="<.<1,<.<1",frame="none",grid="none"]
|==========================================================
|* test
* test
|test2
|==========================================================
will produce the text "* test * test" in the first column, but trying to get a bulleted list in the first column by specifying that, as in
[cols="<.<1a,<.<1",frame="none",grid="none"]
|==========================================================
|* test
* test
|test2
|==========================================================
results in an unhelpfully silent failure (exit code 1).
Is there a workaround?
(As a side note, I really do find the occasional error messages helpful; Asciidoc seems to have eliminated those lately, and I'm not sure why that choice was made.)
I'm running asciidoc 10.1.1, by the way.