Asciidoc tables use equally sized column width by default. How can I tell asciidoc to use minumum column widths instead?
I am able to set relative column widths using
[cols="2,1,6,1,2"]
However, I want Asciidoc to automatically determine the min column width, so that columns with long text do not need extra line breaks.
I would expect something like
[width="min"]
but that does not work.