Read a post file and return (front_matter, body, body_start_line).
(path)
| 74 | |
| 75 | |
| 76 | def read_post(path): |
| 77 | """Read a post file and return (front_matter, body, body_start_line).""" |
| 78 | with open(path, "r", encoding="utf-8") as fh: |
| 79 | return split_front_matter(fh.read()) |
| 80 | |
| 81 | |
| 82 | def body_to_html(body): |
no test coverage detected