From 461dff59119addc8df38fca6189a2b691c77dedc Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 30 Jun 2026 10:57:26 +0700 Subject: Fix code-review findings (changelog rendering, release skill, sidebar) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - changelog: fix 3 silent RST mis-renders carried over from the old monolith — Markdown link in 0.7.0, mismatched/single backticks in 0.18.0 / 0.20.0 - make-release skill contributors one-liner: parallelize the gh fetch, anchor the bot filter (was a substring that dropped handles like "abbott"), and join with ", " (paste -sd cycles the delimiter -> "@a,@b @c"); finalize now stages only the reviewed set (git add -A -- ':!.idea'); drop the obsolete CRLF gotcha - make_release.py: emit LF not CRLF in the repository.yml insertion (fixes the gotcha at the source) - docs sidebar: drop the hardcoded furo component list; override brand.html to include furo's own template + the sponsor button (decoupled from furo internals, no upper-bound pin needed); move sponsor styles into custom.css - .pre-commit-config.yaml: drop stale end-of-file-fixer excludes for the deleted contributors/CoC include shims Co-Authored-By: Claude Opus 4.8 (1M context) --- docs/conf.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'docs/conf.py') diff --git a/docs/conf.py b/docs/conf.py index 7f670f082..c6d04bff5 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -43,19 +43,6 @@ html_favicon = 'assets/logo.svg' html_theme_options = { 'sidebar_hide_name': True, } -# Furo default sidebar with a Sponsor button inserted just below the logo. -html_sidebars = { - '**': [ - 'sidebar/brand.html', - 'sidebar/sponsor.html', - 'sidebar/search.html', - 'sidebar/scroll-start.html', - 'sidebar/navigation.html', - 'sidebar/ethical-ads.html', - 'sidebar/scroll-end.html', - 'sidebar/variant-selector.html', - ] -} html_static_path = ['_static'] html_css_files = ['custom.css'] -- cgit v1.3.1