One final "urlsafe" replaced with "ascii"

This commit is contained in:
Jussi Kinnula 2016-03-29 10:01:08 +03:00
parent 764a2c1b39
commit 4c65772c44
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module Jekyll
autoload :Ansi, "jekyll/utils/ansi"
# Constants for use in #slugify
SLUGIFY_MODES = %w(raw default pretty urlsafe)
SLUGIFY_MODES = %w(raw default pretty ascii)
SLUGIFY_RAW_REGEXP = Regexp.new('\\s+').freeze
SLUGIFY_DEFAULT_REGEXP = Regexp.new('[^[:alnum:]]+').freeze
SLUGIFY_PRETTY_REGEXP = Regexp.new("[^[:alnum:]._~!$&'()+,;=@]+").freeze