mirror of
https://github.com/inttter/md-badges.git
synced 2026-05-06 18:36:58 +02:00
43 lines
1.2 KiB
Bash
Executable file
43 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# #################################################################################
|
|
# extract-refstyle-badges.sh
|
|
#
|
|
# Description:
|
|
# Creates a table of reference-style markdown badges from the table rows in README.md
|
|
#
|
|
# #################################################################################
|
|
|
|
# get a reference to the current directory
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
READMEFILE="${DIR}/../../../README.md"
|
|
OUTFILE="${DIR}/../../../docs/REFERENCE_STYLE.md"
|
|
|
|
# extract the table rows from README.md, sort them, and pass them to
|
|
# the awk script to generate the reference-style link for each row.
|
|
# Add a newline at the end and write to md-badges.md
|
|
readmerows=$(
|
|
cat "${READMEFILE}" | \
|
|
grep -E '^\| \[' | \
|
|
sort
|
|
)
|
|
|
|
# add a newline before processing with awk
|
|
printf "%s\n\n" "$readmerows" \
|
|
| gawk --posix -F '|' -f "${DIR}/extract-refstyle-badges.awk" \
|
|
> "${DIR}/md-badges.md"
|
|
|
|
# now insert the generated md-badges.md content into README.md
|
|
|
|
lead='^<\!-- ### BEGIN GENERATED CONTENT -->'
|
|
tail='^<\!-- ### END GENERATED CONTENT -->'
|
|
|
|
sed -e "/$lead/,/$tail/{
|
|
/$lead/{
|
|
p;
|
|
r $DIR/md-badges.md
|
|
};
|
|
/$tail/p;
|
|
d
|
|
}" "${OUTFILE}" > "${OUTFILE}.tmp"
|
|
mv "${OUTFILE}.tmp" "${OUTFILE}"
|