changeset 20654 | af9d9b778550 |
parent 19996 | 52b437586435 |
child 28751 | 67a4e42a651f |
--- a/tests/test-minirst.py Wed Mar 05 14:03:08 2014 +0100 +++ b/tests/test-minirst.py Wed Feb 19 17:32:21 2014 +0100 @@ -244,3 +244,14 @@ print table debugformats('table', table) + +data = [['s', 'long', 'line\ngoes on here'], + ['', 'xy', 'tried to fix here\n by indenting']] + +rst = minirst.maketable(data, 1, False) +table = ''.join(rst) + +print table + +debugformats('table+nl', table) +