def gather_elements(self, client, node, style):
rows = [client.gen_elements(n) for n in node.children]
t = []
for r in rows:
if not r:
continue
t.append(r)
t_style = TableStyle(client.styles['table'].commands)
colWidths = client.styles['table'].colWidths
return [DelayedTable(t, style=t_style, colWidths=colWidths)]
评论列表
文章目录