Return processed HTML as a single string
(self)
| 2046 | return '&%s;' % name |
| 2047 | |
| 2048 | def output(self): |
| 2049 | '''Return processed HTML as a single string''' |
| 2050 | return ''.join([str(p) for p in self.pieces]) |
| 2051 | |
| 2052 | def parse_declaration(self, i): |
| 2053 | try: |
no test coverage detected