Clean up mkdocs.yml site settings#346
Conversation
repo_title is not an mkdocs configuration option (the header link tooltip comes from repo_name); every build logs a warning for it.
|
Warning Review limit reached
Next review available in: 41 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
✨ Finishing Touches✨ Simplify code
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
site_url was commented out (and pointed at wled.app); without it mkdocs emits relative canonical URLs and the generated sitemap.xml uses placeholder paths. Set it to the live site, https://kno.wled.ge. Also updates repo_url and edit_uri to the current wled organization casing (the project moved from Aircoookie to wled).
The footer copyright was commented out (and frozen at 2016-2021).
Re-enable it with {year} in the string, substituted with the build
year by a small override of the theme's copyright partial. The site
rebuilds on every merge to main, so the notice stays current
without manual bumps.
repo_titleis not an mkdocs configuration option, so every build logsConfig value 'repo_title': Unrecognised configuration name. The header link tooltip comes fromrepo_name. Removing the line silences the warning without changing the rendered site.Expanded into a small mkdocs.yml settings cleanup (one commit each):
site_urlto https://kno.wled.ge. It was commented out (and pointed at wled.app), so builds emit relative canonical links and a sitemap.xml without real absolute URLs. With it set, canonical tags and the sitemap point at the live site.repo_urlandedit_urito the currentwledorganization casing (the project moved from Aircoookie to wled).{year}, substituted with the build year by a small override of the theme's copyright partial, so it stays current automatically on every deploy.Verified with a local build: canonical URLs and sitemap point at kno.wled.ge, footer shows "Copyright (c) 2016-2026", and no config warnings remain.