MCPcopy Create free account
hub / github.com/917Dhj/DeepPaperNote / find_missing_sections

Function find_missing_sections

scripts/lint_note.py:302–307  ·  view source on GitHub ↗
(text: str)

Source from the content-addressed store, hash-verified

300
301
302def 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
310def front_matter_order_warnings(text: str) -> list[str]:

Callers 2

mainFunction · 0.85

Calls

no outgoing calls