:type name: str :rtype: str
(name)
| 326 | |
| 327 | @staticmethod |
| 328 | def convert_entityref(name): |
| 329 | """ |
| 330 | :type name: str |
| 331 | :rtype: str |
| 332 | """ |
| 333 | |
| 334 | return '&%s;' % name |
| 335 | |
| 336 | def output(self): |
| 337 | """Return processed HTML as a single string. |
nothing calls this directly
no outgoing calls
no test coverage detected