Short form of reference: `[google]`.
| 930 | |
| 931 | |
| 932 | class ShortReferenceInlineProcessor(ReferenceInlineProcessor): |
| 933 | """Short form of reference: `[google]`. """ |
| 934 | def evalId(self, data: str, index: int, text: str) -> tuple[str, int, bool]: |
| 935 | """Evaluate the id of `[ref]`. """ |
| 936 | |
| 937 | return text.lower(), index, True |
| 938 | |
| 939 | |
| 940 | class ImageReferenceInlineProcessor(ReferenceInlineProcessor): |
no outgoing calls
no test coverage detected
searching dependent graphs…