diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-01 17:39:53 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-01 17:39:53 +0200 |
| commit | 6136b8a79a7f0ce5e35dc07cd88965953bd0e1af (patch) | |
| tree | a916024f725f8de6e79d85cabfaecfb723ac65b7 /lib/template.source.sh | |
| parent | 309c63c420c425a55ee2a91dd03c77138305a05d (diff) | |
Extract generate::extract_title helper to eliminate duplication
Title extraction ($SED pattern + quote sanitization) was duplicated
in generate, atomfeed, gemfeed, notes, and template modules. Now
centralized with unit tests for heading extraction and empty files.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'lib/template.source.sh')
| -rw-r--r-- | lib/template.source.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/template.source.sh b/lib/template.source.sh index b93303e..0e34a87 100644 --- a/lib/template.source.sh +++ b/lib/template.source.sh @@ -143,7 +143,7 @@ template::inline::_index () { for topic in "$@"; do while read -r gmi_file; do local date=$(cut -d- -f1,2,3 <<< "$gmi_file") - local title=$($SED -n "/^# / { s/# //; p; q; }" "$gmi_file") + local title=$(generate::extract_title "$gmi_file") local current='' if [ "$gmi_file" = "$CURRENT_GMI" ]; then |
