, : , , ..
I donβt think that you need something complicated, like HTML tables (with rowspan and all), a simple CSV will be enough for 99% of cases, I think. It will also allow dynamic javascript rendering to do its job easily.
CSV is well known, lightweight, easy to use and understandable. The only thing needed on top of this would be the start and end tag for CSV data. For example, [csv] ... [/ csv] or || ... ||. Here's what it looks like:
[csv]
**XOR**,**true**,**false**
**true**, false, true
**false**, true, false
[/csv]
This will create a table like this:
XOR true false
true false true
false true false
(with the first row and first column in bold)
source
share