Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: .scripts/convert-readme.sh updated #13

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 29 additions & 9 deletions .scripts/convert-readme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,45 @@

set -e

# Check if a command is installed
function check_command() {
if ! command -v "$1" &> /dev/null; then
echo -e "\033[0;31m $1 is not installed! \033[0m" >&2
echo -e "\033[0;31m Help for About page will not be generated! \033[0m" >&2

if [ -n "$FAIL_ON_CHECK_COMMANDS" ]; then
exit 1
else
exit 0
fi
fi
}

# Check if required commands are installed
check_command jq
check_command curl
check_command awk

INPUT_FILE="${1:-README.md}"
OUTPUT_FILE="${2:-README.html}"

# Convert the markdown file to a JSON payload
jq -R -s '{"mode": "gfm", "text": .}' < "$INPUT_FILE" > payload.json
JSON_PAYLOAD=$(jq -R -s '{"mode": "gfm", "text": .}' < "$INPUT_FILE")

# Send the JSON payload to the GitHub API
curl -L \
CURL_OUTPUT=$(curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/markdown \
-d @payload.json > "$OUTPUT_FILE"
-d "$JSON_PAYLOAD")

# Remove the temporary JSON payload
rm payload.json

# Remove the Build and Installation sections from readme
awk '
# Process the curl output with awk to remove the Build, Installation and Changelog sections
MODIFIED_CONTENT=$(echo "$CURL_OUTPUT" | awk '
/<h2>Build<\/h2>/ {skip=1; next}
/<h2>Polarion configuration<\/h2>/ {skip=0}
!skip' "$OUTPUT_FILE" > "$OUTPUT_FILE.tmp" && mv "$OUTPUT_FILE.tmp" "$OUTPUT_FILE"
/<h2>Changelog<\/h2>/ {skip=1; next}
!skip')

# Write the modified content to the output file
echo "$MODIFIED_CONTENT" > "$OUTPUT_FILE"
Loading