(text: str)
| 300 | |
| 301 | |
| 302 | def find_missing_sections(text: str) -> list[str]: |
| 303 | missing = [] |
| 304 | for section in REQUIRED_SECTIONS: |
| 305 | if f"## {section}" not in text: |
| 306 | missing.append(section) |
| 307 | return missing |
| 308 | |
| 309 | |
| 310 | def front_matter_order_warnings(text: str) -> list[str]: |
no outgoing calls