class Jekyll::ArchivesV2::Archive

def slugify_string_title

downcasing it.
Note: mode other than those expected by Jekyll returns the given string after

Generate slug if @title attribute is a string.
def slugify_string_title
  return unless title.is_a?(String)
  Utils.slugify(title, :mode => @config["slug_mode"])
end