Split text into frontmatter and content.
(self, text)
| 47 | return False |
| 48 | |
| 49 | def split(self, text): |
| 50 | """ |
| 51 | Split text into frontmatter and content. |
| 52 | """ |
| 53 | _, fm, content = self.FM_BOUNDARY.split(text, 2) |
| 54 | return fm, content |
| 55 | |
| 56 | def format(self, content, metadata, template=DEFAULT_POST_TEMPLATE, **kwargs): |
| 57 | """ |
no outgoing calls
no test coverage detected