class Jekyll::SeoTag::ImageDrop

def initialize(page: nil, context: nil)

context - the Liquid::Context
page - The page hash (e.g., Page#to_liquid)

Initialize a new ImageDrop
def initialize(page: nil, context: nil)
  raise ArgumentError unless page && context
  @mutations = {}
  @page = page
  @context = context
end