Short form of image reference: `![ref]`.
| 950 | |
| 951 | |
| 952 | class ShortImageReferenceInlineProcessor(ImageReferenceInlineProcessor): |
| 953 | """ Short form of image reference: `![ref]`. """ |
| 954 | def evalId(self, data: str, index: int, text: str) -> tuple[str, int, bool]: |
| 955 | """Evaluate the id of `[ref]`. """ |
| 956 | |
| 957 | return text.lower(), index, True |
| 958 | |
| 959 | |
| 960 | class AutolinkInlineProcessor(InlineProcessor): |
no outgoing calls
no test coverage detected
searching dependent graphs…