TOML frontmatter parser.
For documentation see docs.rs.
```rust
struct Frontmatter { date: String, }
let sample = r#" ---toml
Some Markdown. Or something else! "#.trim();
let (frontmatter, markdown) = toml_frontmatter::parse::
Distributed under the Apache License 2.0 and MIT licenses, see LICENSE-Apache and LICENSE-MIT for more information.