module GitHub::Markup

def render_s(symbol, content, options: {})

def render_s(symbol, content, options: {})
  raise ArgumentError, 'Can not render a nil.' if content.nil?
  if markups.key?(symbol)
    markups[symbol].render(nil, content, options: options)
  else
    content
  end
end