(g)
| 32 | |
| 33 | |
| 34 | def member_table_def(g): |
| 35 | tbl = parse_table('<table>%s</table>' % str(g.group(3))) |
| 36 | # Escape column with '.' as prefix |
| 37 | tbl = re.compile(r'T{\n(\..*?)\nT}', re.S).sub(r'T{\n\\E \1\nT}', tbl) |
| 38 | return '\n.IP "%s"\n%s\n%s\n' % (g.group(1), g.group(2), tbl) |
| 39 | |
| 40 | |
| 41 | def member_type_function(g): |
nothing calls this directly
no test coverage detected