(self, match, lineno)
| 247 | self.implicit_dispatch.append((issue, self.issue_reference)) |
| 248 | |
| 249 | def issue_reference(self, match, lineno): |
| 250 | text = match.group(0) |
| 251 | |
| 252 | rawsource = unescape(text, True) |
| 253 | text = unescape(text, False) |
| 254 | |
| 255 | refuri = 'https://issues.apache.org/jira/browse/' + text |
| 256 | |
| 257 | return [nodes.reference(rawsource, text, refuri=refuri)] |
| 258 | |
| 259 | |
| 260 | states.Inliner = Inliner |
nothing calls this directly
no test coverage detected