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
In web pages, metadata allow to improve searchability of the pages (SEO).
A CLI command which help to detect which pages are well documented and which ones are not would be very helpful.
Expected:
A a list of metadata keys to be found in every content, something like:
JFME_CONTENT_REQUIRED_METADATA=[ "title", "slug", "description", "language", "lang", "og:title", "og:description", "og:type", "og:site_name", "og:url", "og:image", "og:locale" ]
The when running the CLI command the result would be to identify missing metatada.
./manage.py check-metadata [--verbose] [content path]
which would return a status for all pages with a percentage (x% computed based on required metadata found vs required metadata total number)
Example of result:
80% fr-index.md 90% en-index.md ✓✓✓ dns-generator.md
Example of verbose result:
80% fr-index.md - og:image is missing - language is empy 90% en-index.md - og:site_name is empty ✓✓✓ dns-generator.md
The text was updated successfully, but these errors were encountered:
Merged in #36
Sorry, something went wrong.
No branches or pull requests
In web pages, metadata allow to improve searchability of the pages (SEO).
A CLI command which help to detect which pages are well documented and which ones are not would be very helpful.
Expected:
A a list of metadata keys to be found in every content, something like:
The when running the CLI command the result would be to identify missing metatada.
which would return a status for all pages with a percentage (x% computed based on required metadata found vs required metadata total number)
Example of result:
Example of verbose result:
The text was updated successfully, but these errors were encountered: