:type name: str :rtype: str
(name)
| 317 | |
| 318 | @staticmethod |
| 319 | def convert_charref(name): |
| 320 | """ |
| 321 | :type name: str |
| 322 | :rtype: str |
| 323 | """ |
| 324 | |
| 325 | return '&#%s;' % name |
| 326 | |
| 327 | @staticmethod |
| 328 | def convert_entityref(name): |
nothing calls this directly
no outgoing calls
no test coverage detected