module MCMarkdown::Formatter::Wistia

Public Instance Methods

preprocess(doc) click to toggle source
Calls superclass method
# File lib/mc_markdown/formatters/wistia.rb, line 5
def preprocess doc
  doc = Parser::ShortTag.new(doc, WistiaFormatter).parsed

  if defined?(super)
    return super(doc)
  else
    return doc
  end
end