gregbanks / python-tabulate

fork of https://bitbucket.org/astanin/python-tabulate
MIT License
178 stars 14 forks source link

Provision to group headers #7

Open jjdharini opened 7 years ago

jjdharini commented 7 years ago

Does tabulate provide support to group headers?

For example,

|----- | ----- | ----- a ----- | ----- b ----- | | hey | hello | a1 | a2 | a3 | b1 | b2 | b3 | | 1 | 2 | 1 | 2 | 3 | 4 | 5 | 6 |

Header 'a' groups headers a1, a2 and a3. Here first and second row are headers and then follows the content of the table.

Thanks, Jd