(line: str)
| 598 | |
| 599 | |
| 600 | def figure_callout_title(line: str) -> str: |
| 601 | match = FIGURE_CALLOUT_TITLE_RE.match(line.strip()) |
| 602 | if not match: |
| 603 | return "" |
| 604 | return match.group(1).strip() |
| 605 | |
| 606 | |
| 607 | def figure_status_text(line: str) -> str: |
no outgoing calls
no test coverage detected