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
The id: etc. "Metadata" documented here currently (quote) "must come before the title".
id:
This is unusual by Markdown "standards" (as far as there is such a thing; I know!); typically such "headers" are put into "YAML Front Matter". Some other Markdown parsers can ignore it as text, but extract it for processing. GitHub (now) renders this "nicely", see https://github.blog/2013-09-27-viewing-yaml-metadata-in-your-documents/.
So instead of e.g. this:
id: my-codelab # My Codelab
claat should, at least optionally (for backwards compability) support this:
claat
--- id: my-codelab --- # My Codelab
It currently doesn't, and fails, saying: codelab.md invalid metadata format, missing at least id: map[duration:0:02:00]
codelab.md invalid metadata format, missing at least id: map[duration:0:02:00]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
id:
etc. "Metadata" documented here currently (quote) "must come before the title".This is unusual by Markdown "standards" (as far as there is such a thing; I know!); typically such "headers" are put into "YAML Front Matter". Some other Markdown parsers can ignore it as text, but extract it for processing. GitHub (now) renders this "nicely", see https://github.blog/2013-09-27-viewing-yaml-metadata-in-your-documents/.
So instead of e.g. this:
id: my-codelab # My Codelab
claat
should, at least optionally (for backwards compability) support this:It currently doesn't, and fails, saying:
codelab.md invalid metadata format, missing at least id: map[duration:0:02:00]
The text was updated successfully, but these errors were encountered: