Standardize Metadata and SEO Front-Matter across All Languages and Core Documentation Files#2753
Standardize Metadata and SEO Front-Matter across All Languages and Core Documentation Files#2753Aditya948351 wants to merge 3 commits into
Conversation
|
Thank you for submitting your pull request, @Aditya948351! 🙌 We'll review it as soon as possible. If there are any specific instructions or feedback regarding your PR, we'll provide them here. Thanks again for your contribution to our Algo project! 😊 |
There was a problem hiding this comment.
Code Review
This pull request standardizes and formats the front-matter metadata across numerous documentation files, converting tags to list format, using block scalars for descriptions, and adding sidebar positions. The review feedback identifies several metadata issues, including a nested markdown wrapper causing rendering issues in lca-binary-lifting.md, redundant or duplicated description and tag fields in Problem-Practice.md and brain-kernighan-algo.md, typos in field names and tags (such as descriptin and Abstraaction), and spaces in Docusaurus IDs that could break URL generation.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
⚡️ Lighthouse Report for the Deploy Preview of this PR 🚀
|
ajay-dhangar
left a comment
There was a problem hiding this comment.
Please carefully read our contribution guidelines and follow the documentation format based on Docusaurus standards.
| title: "Bentley-Ottmann Algorithm" | ||
| title: Bentley-Ottmann Algorithm | ||
| sidebar_label: Bentley-Ottmann Algorithm | ||
| description: >- |
There was a problem hiding this comment.
replace
description: >-
Detailed guide on Bentley-Ottmann Algorithm including core concepts,
algorithmic implementation, complexity analysis, and practice problems.with
description: "Detailed guide on Bentley-Ottmann Algorithm including core concepts, algorithmic implementation, complexity analysis, and practice problems."
Fixes #2743