doc: update howto-index.sh for .adoc extensions
The .txt extensions were changed to .adoc in 1f010d6bdf
(doc: use .adoc
extension for AsciiDoc files, 2025-01-20). This left broken links in
the generated howto-index.html.
Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
parent
2a1530a953
commit
41c793eae9
|
@ -9,9 +9,9 @@ people describing how they use Git in their workflow.
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
for txt
|
for adoc
|
||||||
do
|
do
|
||||||
title=$(expr "$txt" : '.*/\(.*\)\.txt$')
|
title=$(expr "$adoc" : '.*/\(.*\)\.adoc$')
|
||||||
from=$(sed -ne '
|
from=$(sed -ne '
|
||||||
/^$/q
|
/^$/q
|
||||||
/^From:[ ]/{
|
/^From:[ ]/{
|
||||||
|
@ -21,7 +21,7 @@ do
|
||||||
s/^/by /
|
s/^/by /
|
||||||
p
|
p
|
||||||
}
|
}
|
||||||
' "$txt")
|
' "$adoc")
|
||||||
|
|
||||||
abstract=$(sed -ne '
|
abstract=$(sed -ne '
|
||||||
/^Abstract:[ ]/{
|
/^Abstract:[ ]/{
|
||||||
|
@ -39,13 +39,13 @@ do
|
||||||
x
|
x
|
||||||
p
|
p
|
||||||
q
|
q
|
||||||
}' "$txt")
|
}' "$adoc")
|
||||||
|
|
||||||
if grep 'Content-type: text/asciidoc' >/dev/null $txt
|
if grep 'Content-type: text/asciidoc' >/dev/null $adoc
|
||||||
then
|
then
|
||||||
file=$(expr "$txt" : '\(.*\)\.txt$').html
|
file=$(expr "$adoc" : '\(.*\)\.adoc$').html
|
||||||
else
|
else
|
||||||
file="$txt"
|
file="$adoc"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "* link:howto/$(basename "$file")[$title] $from
|
echo "* link:howto/$(basename "$file")[$title] $from
|
||||||
|
|
Loading…
Reference in New Issue