(front_matter)
| 142 | |
| 143 | |
| 144 | def post_author(front_matter): |
| 145 | m = re.search(r"^author:\s*[\"']?([^\"'\n]+)", front_matter, re.M) |
| 146 | return (m.group(1).strip() if m else "") |
| 147 | |
| 148 | |
| 149 | def process_file(path, write, counts, skipped): |
no test coverage detected