Turn on FancyIndexing.

This commit is contained in:
Parker Moore 2014-10-20 21:23:30 -07:00
parent 5b37ad57cc
commit 9cc3085dd0
1 changed files with 4 additions and 3 deletions

View File

@ -122,9 +122,10 @@ module Jekyll
# recreate NondisclosureName under utf-8 circumstance # recreate NondisclosureName under utf-8 circumstance
def file_handler_options def file_handler_options
fh_option = WEBrick::Config::FileHandler WEBrick::Config::FileHandler.merge({
fh_option[:NondisclosureName] = ['.ht*','~*'] :FancyIndexing => true,
fh_option :NondisclosureName => ['.ht*','~*']
})
end end
end end