(line: str)
| 473 | |
| 474 | |
| 475 | def get_code_block_lang(line: str) -> str: |
| 476 | match = CODE_BLOCK_LANG_RE.match(line) |
| 477 | if match: |
| 478 | return match.group(1) |
| 479 | return "" |
| 480 | |
| 481 | |
| 482 | def extract_multiline_code_blocks(text: list[str]) -> list[MultilineCodeBlockInfo]: |
no outgoing calls
no test coverage detected