From 61d950910dd80197d45d3019a4216a8ce5269aad Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Sat, 11 Jul 2026 12:45:01 +0200 Subject: [PATCH] Update embed.v --- src/embed.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/embed.v b/src/embed.v index c87a915..5be260c 100644 --- a/src/embed.v +++ b/src/embed.v @@ -65,7 +65,7 @@ fn detect_type(url string) string { // $[Krzak.org icon](https://krzak.org/krzak-icon.png|i) fn parse_type_hint(type_hint string) string { return match type_hint { - 'i', 'image' { 'image' } + 'i', 'image', 'img' { 'image' } 'a', 'audio' { 'audio' } 'v', 'video' { 'video' } 'f', 'iframe' { 'iframe' }