-
Notifications
You must be signed in to change notification settings - Fork 179
Add description metadata to first-level index pages #3395
New issue
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
Conversation
Co-authored-by: theletterf <[email protected]>
florent-leborgne
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simple progress! Nice!
leemthompo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Co-authored-by: Vlada Chirmicci <[email protected]>
yetanothertw
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you
## Summary This PR adds `description` metadata to the frontmatter of all 10 first-level index.md files in the repository to improve SEO and provide clear page summaries. ## Changes Added concise, informative descriptions to the following first-level index pages: - **cloud-account/index.md** - Description about managing Elastic Cloud account settings and preferences - **deploy-manage/index.md** - Description about deploying and managing Elastic environments - **explore-analyze/index.md** - Description about exploring and analyzing data with Kibana - **extend/index.md** - Description about extending the Elastic Platform (also added frontmatter structure) - **get-started/index.md** - Description about Elastic fundamentals and getting started - **manage-data/index.md** - Description about data ingestion and management in Elasticsearch - **reference/index.md** - Description about Elastic Stack reference documentation - **release-notes/index.md** - Description about release notes and changelogs (also added frontmatter structure) - **solutions/index.md** - Description about Elastic solutions for search, observability, and security - **troubleshoot/index.md** - Description about troubleshooting resources and support ## Implementation Details - All descriptions follow the YAML multi-line format consistent with the root `index.md` file - Descriptions are concise (2-3 sentences) and accurately reflect the content of each page - Two files (`extend/index.md` and `release-notes/index.md`) previously had no frontmatter and now have proper YAML frontmatter blocks - All YAML syntax has been validated ## Related Issue Addresses the requirement outlined in elastic/docs-builder#1559 ## Example Before: ```yaml --- applies_to: stack: ga serverless: ga --- ``` After: ```yaml --- applies_to: stack: ga serverless: ga description: Learn how to ingest, store, and manage data in Elasticsearch. Understand indices, mappings, text analysis, data lifecycle management, and migration between clusters. --- ``` <!-- START COPILOT CODING AGENT SUFFIX --> <details> <summary>Original prompt</summary> > > ---- > > *This section details on the original issue you should resolve* > > <issue_title>Add description metadata to first-level index pages</issue_title> > <issue_description>Most Markdown docs in this repository still lack a `description:` in the frontmatter. We should at least add a description for the first level pages, that is, the index.md pages inside each of the docs folders. > > Related issue: https://github.com/elastic/docs-builder/issues/1559</issue_description> > > ## Comments on the Issue (you are @copilot in this section) > > <comments> > </comments> > </details> Fixes elastic#3394 <!-- START COPILOT CODING AGENT TIPS --> --- 💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click [here](https://survey3.medallia.com/?EAHeSx-AP01bZqG0Ld9QLQ) to start the survey. --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: theletterf <[email protected]>
Summary
This PR adds
descriptionmetadata to the frontmatter of all 10 first-level index.md files in the repository to improve SEO and provide clear page summaries.Changes
Added concise, informative descriptions to the following first-level index pages:
Implementation Details
index.mdfileextend/index.mdandrelease-notes/index.md) previously had no frontmatter and now have proper YAML frontmatter blocksRelated Issue
Addresses the requirement outlined in elastic/docs-builder#1559
Example
Before:
After:
Original prompt
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.