(line: str)
| 820 | |
| 821 | |
| 822 | def is_image_embed_line(line: str) -> bool: |
| 823 | stripped = line.strip() |
| 824 | return stripped.startswith("![[") or bool(MARKDOWN_IMAGE_EMBED_RE.match(stripped)) |
| 825 | |
| 826 | |
| 827 | def has_figure_marker(text: str) -> bool: |
no outgoing calls
no test coverage detected