Working on _blog_idx_for_index

This commit is contained in:
Stig-Ørjan Smelror 2024-01-30 12:27:21 +01:00
parent c1a2dc1c69
commit 3d5d665157

9
qsgen2
View File

@ -522,10 +522,11 @@ function _blog_idx_for_index() {
for blogs in ${BLOG_META_STR_ARRAY[@]} for blogs in ${BLOG_META_STR_ARRAY[@]}
do do
echo ${blogs[URL]} local index_array=("${(@s/||/)blogs}")
echo ${blogs[BTITLE]} echo "1. ${index_array[URL]}"
echo ${blogs[SDATE[@]]} echo "2. ${index_array[BTITLE]}"
echo ${blogs[INGRESS]} echo "3. ${index_array[SDATE[@]]}"
echo "4. ${index_array[INGRESS]}"
done done
} }