module Pricecut
  module Elements
    class Img < Element
      def output!
        alt = node["alt"]
        src = node["src"]

        p "![#{ alt }](#{ src })"
      end
    end
  end
end