docs.rs failed to build markdown-frontmatter-0.5.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
markdown-frontmatter-0.5.1
markdown-frontmatter
A type-safe parser for Markdown frontmatter.
This crate provides a simple and efficient way to split and parse frontmatter from Markdown documents.
Supported Frontmatter Formats
The crate supports the following frontmatter formats and their corresponding delimiters:
- JSON: Delimited by
{on the first line and}on a closing line. The enclosed JSON content must be indented to be parsed correctly.{ "title": "JSON Frontmatter" } - TOML: Delimited by
+++on opening and closing lines.+++ title = "TOML Frontmatter" +++ - YAML: Delimited by
---on opening and closing lines.--- title: YAML Frontmatter ---
Usage
Add the crate to your dependencies:
Parsing Frontmatter
let doc = r#"---
title: Hello
---
World"#;
let = .unwrap;
assert_eq!;
assert_eq!;
Optional frontmatter
If a document does not contain a frontmatter, it is treated as if it has an empty one. This allows to make frontmatter fully optional by using only optional fields, e.g.
let doc = "Hello";
let = .unwrap;
assert!;
assert_eq!;
Features
This crate has the following Cargo features:
json: Enables JSON frontmatter parsing.toml: Enables TOML frontmatter parsing.yaml: Enables YAML frontmatter parsing.
By default, no features are enabled.
Contributing
Before submitting a pull request, please run the .pre-commit.sh script:
License
This project is licensed under the MIT license.