aboutsummaryrefslogtreecommitdiff
path: root/posts/batch-webp-conversion.md
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-20 12:13:49 -0400
committerBradley Taunt <bt@btxx.org>2024-07-20 12:13:49 -0400
commitb810d9a0b47dd49a90cc8ec7bf1b05f59ff945b3 (patch)
treed4e70797a7c1237a7e8a9be0d025e878d2601160 /posts/batch-webp-conversion.md
parentf39a84524d77bcc2a83adfab01716c67cc7e983b (diff)
Crude testing with blogrb
Diffstat (limited to 'posts/batch-webp-conversion.md')
-rw-r--r--posts/batch-webp-conversion.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/posts/batch-webp-conversion.md b/posts/batch-webp-conversion.md
index 54bc56b..9befa46 100644
--- a/posts/batch-webp-conversion.md
+++ b/posts/batch-webp-conversion.md
@@ -36,12 +36,12 @@ You *could* download one of the many native apps from the Mac App Store to do th
8) Enter the following code below as your script and type `⌘-S` to save (name it something like "Convert to webp")
-```sh
+~~~sh
for f in "$@"
do
/usr/local/bin/cwebp -q 85 "$f" -o "${f%.*}.webp"
done
-```
+~~~
For visual reference, it should look something like this:
@@ -67,9 +67,9 @@ Simple as that!
I was contacted by the very helpful [Kev Quirk](https://kevq.uk) about a minor problem he encountered while following this tutorial. When trying to run `cwebp` he received the following error message:
-```sh
+~~~sh
cwebp cannot be opened because it's from an unverified developer
-```
+~~~
Doing the next steps seemed to have fixed this issue for him: