forked from nat/webbed-site
12 lines
223 B
Plaintext
12 lines
223 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
path=$1
|
||
|
caption=$2
|
||
|
|
||
|
if [ -z "${caption}" ]; then
|
||
|
caption="$(basename "$path" | sed 's/-/ /g; s/\.[^.]*$//')"
|
||
|
fi
|
||
|
|
||
|
echo "<figure><img src='$path' alt='$caption'><figcaption>$caption</figcaption></figure>"
|
||
|
|