From c2d649e655f877abd371d16b3322d876e50163b1 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 18 Mar 2025 14:04:29 -0700 Subject: [PATCH] refactor: Use Jekyll templating for recordings list generation --- aider/website/docs/recordings/index.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/aider/website/docs/recordings/index.md b/aider/website/docs/recordings/index.md index 36bc6255e..ac549039d 100644 --- a/aider/website/docs/recordings/index.md +++ b/aider/website/docs/recordings/index.md @@ -14,11 +14,8 @@ to enhance aider. They contain commentary that describes how aider is being used, and might provide some inspiration for your own use of aider. -- [Add --auto-accept-architect feature](./auto-accept-architect.html) - See how a new command-line option is added to automatically accept edits proposed by the architect model, with implementation. Aider also updates the project's HISTORY file. - -- [Add language support via tree-sitter-language-pack](./tree-sitter-language-pack.html) - Watch how aider adds support for tons of new programming languages by integrating with tree-sitter-language-pack. Demonstrates using aider to script downloading a collection of files, and using ad-hoc bash scripts to have aider modify a collection of files. - -- [Don't /drop read-only files added at launch](./dont-drop-original-read-files.html) - Follow along as aider is modified to preserve read-only files specified at launch when using the /drop command. Aider does this implementation and adds test coverage. - -- [Warn when users apply unsupported reasoning settings](./model-accepts-settings.html) - Watch the implementation of a warning system that alerts users when they try to apply reasoning settings to models that don't support them. Includes adding model metadata, confirmation dialogs, a debugging wild goose chase, a small refactoring, adding test coverage, updating docs and project history. +{% assign sorted_pages = site.pages | where: "parent", "Screen recordings" | sort: "nav_order" %} +{% for page in sorted_pages %} +- [{{ page.title }}]({{ page.url | relative_url }}) - {{ page.description }} +{% endfor %}