From: Danilo M. Date: Sat, 18 Apr 2026 17:46:44 +0000 (+0200) Subject: removed all occurrencies of the highlight shortcode. File removed. X-Git-Tag: release_22042026-1342~89 X-Git-Url: https://git.danix.xyz/?a=commitdiff_plain;h=6d3940a381a91f61c87ecb9f01f99c897b1aaf00;p=danix.xyz-2.git removed all occurrencies of the highlight shortcode. File removed. --- diff --git a/TODO.md b/TODO.md index 9dec10e..2e0837f 100644 --- a/TODO.md +++ b/TODO.md @@ -7,7 +7,7 @@ - [✅] Sidebar widgets redesign (no box, mono font "# Title") - [ ] Footer redesign (3-column, social badges, fortune cookie, tech badges, etc.) - [✅] related articles debug -- [ ] shortcodes cleanup (remove duplicates) +- [✅] shortcodes cleanup (remove duplicates) - [ ] Search functionality - [ ] Open Graph meta tags for social sharing - [ ] Sitemap & robots.txt optimization diff --git a/content/en/articles/gify-back-to-bash-scripting/index.md b/content/en/articles/gify-back-to-bash-scripting/index.md index 7841895..647c8ea 100644 --- a/content/en/articles/gify-back-to-bash-scripting/index.md +++ b/content/en/articles/gify-back-to-bash-scripting/index.md @@ -41,7 +41,8 @@ I made this script mostly for fun and personal use, so it's absolutely not idiot I'll leave you with a copy of the script here in case you want to have a look at it before downloading. Enjoy! -{{< highlight bash "linenos=true" >}}#! /bin/bash +```bash +#! /bin/bash # Author: Danilo 'danix' Macri # Author URI: https://danix.xyz @@ -80,7 +81,7 @@ MOGRIFY=$(which mogrify) CONVERT=$(which convert) # we need mogrify and convert from the imagemagik toolset for this script to work # -if [[ ! -x $MOGRIFY || ! -x $CONVERT ]]; then +if [[ ! -x $MOGRIFY || ! -x $CONVERT ]]; then showerror missingdeps exit $E_MISSINGDEPS fi @@ -91,20 +92,20 @@ showhelp () { case $1 in resize ) - echo "USAGE: $(basename $0) -r | --resize [width] [extension]" + echo "USAGE: $(basename $0) -r | --resize [width] [extension]" ;; gif ) - echo "USAGE: $(basename $0) -g | --gif [delay] [extension] [output file name]" + echo "USAGE: $(basename $0) -g | --gif [delay] [extension] [output file name]" ;; * ) #|----------------------- TEXT MAX WIDTH - 80 CHARS ----------------------------| echo -e "$(basename $0) - create animated gifs from images inside current directory" - echo -e "USAGE: $(basename $0) <option> [arguments]" - echo -e "\twhere <option> is one between:";echo - echo -e "\t-r | --resize [width] [extension]" + echo -e "USAGE: $(basename $0)