Return True when a line looks like a section title rather than content.
(line: str)
| 355 | |
| 356 | |
| 357 | def is_section_heading(line: str) -> bool: |
| 358 | """Return True when a line looks like a section title rather than content.""" |
| 359 | return _normalize_heading_line(line) in SECTION_TITLES |
| 360 | |
| 361 | |
| 362 | def split_author_names(line: str) -> List[str]: |
no test coverage detected