(self, input, document)
| 6 | supported = ('foo',) |
| 7 | |
| 8 | def parse(self, input, document): |
| 9 | section = nodes.section(ids=['id1']) |
| 10 | section += nodes.title('Generated section', 'Generated section') |
| 11 | document += section |
| 12 | |
| 13 | def get_transforms(self): |
| 14 | return [] |