(self, match, lineno)
| 235 | self.implicit_dispatch.append((issue, self.issue_reference)) |
| 236 | |
| 237 | def issue_reference(self, match, lineno): |
| 238 | text = match.group(0) |
| 239 | |
| 240 | rawsource = unescape(text, True) |
| 241 | text = unescape(text, False) |
| 242 | |
| 243 | refuri = 'https://issues.apache.org/jira/browse/' + text |
| 244 | |
| 245 | return [nodes.reference(rawsource, text, refuri=refuri)] |
| 246 | |
| 247 | |
| 248 | states.Inliner = Inliner |
nothing calls this directly
no test coverage detected