diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index d3f8da3a..a31fbaad 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -14,7 +14,7 @@ body.zen-mode-enable { } } -/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */ +/*! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com */ /* 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) diff --git a/exampleSite/content/users/users.json b/exampleSite/content/users/users.json index 7a420d6b..23affa9f 100644 --- a/exampleSite/content/users/users.json +++ b/exampleSite/content/users/users.json @@ -664,5 +664,24 @@ "Software Developer", "Videogame Developer" ] + }, + { + "title": "MEM v ENNBEE", + "url": "https://memv.ennbee.uk/", + "source": "https://github.com/ennnbeee/ennnbeee.github.io", + "tags": [ + "Technology Blog", + "Personal site" + ] + }, + { + "title": "Joshua Blais", + "url": "https://joshblais.com/", + "source": "n/a", + "tags": [ + "Personal Site", + "Author", + "Digital Garden" + ] } ] diff --git a/layouts/shortcodes/codeimporter.html b/layouts/shortcodes/codeimporter.html index 801697bc..493f4448 100644 --- a/layouts/shortcodes/codeimporter.html +++ b/layouts/shortcodes/codeimporter.html @@ -1,6 +1,6 @@ {{ $url := .Get "url" }} {{ $type := .Get "type" }} -{{ with resources.GetRemote (printf $url) }} +{{ with resources.GetRemote (urls.Parse $url) }} {{ $codeBlock := printf "```%s\n%s\n```" $type .Content }} {{ $codeBlock | markdownify }} {{ else }} diff --git a/layouts/shortcodes/mdimporter.html b/layouts/shortcodes/mdimporter.html index 28b24fe2..18b87bd6 100644 --- a/layouts/shortcodes/mdimporter.html +++ b/layouts/shortcodes/mdimporter.html @@ -1,6 +1,6 @@ {{ $url := .Get "url"}} -{{ with resources.GetRemote (printf $url) }} +{{ with resources.GetRemote (urls.Parse $url) }} {{ .Content | markdownify }} {{ else }} {{ errorf "Mardown Importer Shortcode - Unable to get remote resource" . }} -{{ end }} \ No newline at end of file +{{ end }}