From 9a89685d001ef196b66092f36c871899cee54a75 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 27 Apr 2020 16:01:22 -0400 Subject: [PATCH] baseurl for image plugin --- _plugins/image.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_plugins/image.rb b/_plugins/image.rb index ec3935e0..29e8a38b 100644 --- a/_plugins/image.rb +++ b/_plugins/image.rb @@ -3,8 +3,9 @@ class ImageTag < Liquid::Tag def render(context) src = @markup.strip - " - + baseurl = Jekyll.configuration({})['baseurl'] + " + " end end