Return processed HTML as a single string. :rtype: str
(self)
| 334 | return '&%s;' % name |
| 335 | |
| 336 | def output(self): |
| 337 | """Return processed HTML as a single string. |
| 338 | |
| 339 | :rtype: str |
| 340 | """ |
| 341 | |
| 342 | return ''.join(self.pieces) |
| 343 | |
| 344 | def parse_declaration(self, i): |
| 345 | """ |
no outgoing calls
no test coverage detected