syntax highlight

tengel 2025-02-16 09:20:33 -06:00
parent bf0a37f04e
commit 7cfbe6f921

@ -14,7 +14,7 @@ Assuming the main SVG design goes edge to edge and is of a suitable square power
Create a legacy ICO from this PNG using Imagemagick using the most common sizes: Create a legacy ICO from this PNG using Imagemagick using the most common sizes:
``` ```bash
magick favicon.png -define icon:auto-resize=64,48,32,16 favicon.ico magick favicon.png -define icon:auto-resize=64,48,32,16 favicon.ico
``` ```
@ -23,7 +23,7 @@ Typically the ICO file is larger than the PNG or SVG due to it's nature.
## HTML ## HTML
``` ```html
<link rel="icon" href="favicon.svg" type="image/svg+xml"> <link rel="icon" href="favicon.svg" type="image/svg+xml">
<link rel="alternate icon" href="favicon.png" type="image/png"> <link rel="alternate icon" href="favicon.png" type="image/png">
``` ```