We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
generate_docs uses site-kit, which uses a homecooked front matter parser. however this is non standard frontmatter:
generate_docs
this:
title: "Scooby Doo: Where are you" published: false
should parse to:
{ "title": "Scooby Doo: Where are you", "published": false }
whereas with site-kit this happens:
site-kit
{ "title": "\"Scooby Doo: Where are you\"", "published": "false" }
which causes nasty bugs down the line.
front-matter exists, we should use and encourage it.
front-matter
i dont know if a formal frontmatter spec exists, but from experience this behavior is fairly standard now.
if you accept this i am happy to submit a PR but i am holding off because i'm sensing a PR backlog.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
generate_docs
uses site-kit, which uses a homecooked front matter parser. however this is non standard frontmatter:this:
should parse to:
whereas with
site-kit
this happens:which causes nasty bugs down the line.
front-matter
exists, we should use and encourage it.i dont know if a formal frontmatter spec exists, but from experience this behavior is fairly standard now.
if you accept this i am happy to submit a PR but i am holding off because i'm sensing a PR backlog.
The text was updated successfully, but these errors were encountered: