summaryrefslogtreecommitdiff
path: root/lib/html.source.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-09 00:13:52 +0300
committerPaul Buetow <paul@buetow.org>2025-07-09 00:13:52 +0300
commit2e70c6bf1f0d7a16c3d70512de1650bb010d13b6 (patch)
tree8966f70191b27ec6854ef4472a0958ed8e4d1d3f /lib/html.source.sh
parent1c1109b7e0d741a113af1d94a5741d9fe7373f04 (diff)
fix: unbound variable in html::source_highlight
Diffstat (limited to 'lib/html.source.sh')
-rw-r--r--lib/html.source.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/html.source.sh b/lib/html.source.sh
index 3e16264..8dab622 100644
--- a/lib/html.source.sh
+++ b/lib/html.source.sh
@@ -129,6 +129,7 @@ html::theme::webfonts () {
html::source_highlight () {
local -r bare_text="$1"; shift
local -r language="$1"; shift
+ local tmp_file=''
if [[ -z "$language" || -z "$SOURCE_HIGHLIGHT" ]]; then
echo '<pre>'
@@ -141,7 +142,6 @@ html::source_highlight () {
fi
if [[ "$language" == "AUTO" ]]; then
- local tmp_file
tmp_file=$(mktemp)
trap 'rm -f "$tmp_file"' RETURN
printf %s "$bare_text" > "$tmp_file"