(link_text)
| 332 | |
| 333 | @staticmethod |
| 334 | def _link_text_to_html(link_text): |
| 335 | code_re = '`(.*?)`' |
| 336 | return re.sub(code_re, r'<code>\1</code>', link_text) |
| 337 | |
| 338 | def py_master_name(self, full_name): |
| 339 | """Return the master name for a Python symbol name.""" |
no test coverage detected