mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-14 09:25:11 +08:00
11 lines
261 B
Ruby
11 lines
261 B
Ruby
# encoding: utf-8
|
|
|
|
module Slug
|
|
|
|
def self.for(string)
|
|
slug = string.gsub("'", "").parameterize
|
|
slug.gsub!("_", "-")
|
|
slug =~ /[^\d]/ ? slug : '' # Reject slugs that only contain numbers, because they would be indistinguishable from id's.
|
|
end
|
|
|
|
end
|