This commit is contained in:
Nicholas Orlowsky 2025-01-31 19:29:54 -05:00
parent c46822bf9a
commit c07f9f5738
Signed by: nickorlow
GPG key ID: 838827D8C4611687
17 changed files with 105 additions and 104 deletions

View file

@ -23,6 +23,7 @@ process_filler_file() {
# Read the contents of the filler file
filler_content=$(<"$filler_file")
filler_content=$(echo "$filler_content" | sed "s/\&/\\\&/g")
# Replace "{{ body_area }}" in the template with filler content
modified_content="${template_content/\{\{ body_area \}\}/$filler_content}"