machine_friendly

in lib/helpers/generic.rb [98:103]


    def machine_friendly(section)
      return "none" if section == "none"

      section.downcase.gsub(%r{[^a-z0-9]+}, '_').gsub(%r{^_|_$}, '')
    end