# frozen_string_literal: true module Kramdown module Converter module Amp def convert_img(el, indent) img_src = el.attr["src"] img_src = img_src.slice(1..-1) if img_src.start_with?("/") w, h = FastImage.size(img_src) "" end end end end