parent
17bd584319
commit
bb42e6251e
|
@ -152,5 +152,3 @@ Style/SymbolArray:
|
|||
Enabled: false
|
||||
Style/TrailingCommaInLiteral:
|
||||
EnforcedStyleForMultiline: consistent_comma
|
||||
Style/UnneededCapitalW:
|
||||
Enabled: false
|
||||
|
|
|
@ -85,7 +85,7 @@ module Jekyll
|
|||
:StartCallback => start_callback(opts["detach"]),
|
||||
:BindAddress => opts["host"],
|
||||
:Port => opts["port"],
|
||||
:DirectoryIndex => %W(
|
||||
:DirectoryIndex => %w(
|
||||
index.htm
|
||||
index.html
|
||||
index.rhtml
|
||||
|
|
|
@ -44,7 +44,7 @@ module Jekyll
|
|||
# are not in safe mode.)
|
||||
|
||||
def valid_processors
|
||||
%W(rdiscount kramdown redcarpet) + third_party_processors
|
||||
%w(rdiscount kramdown redcarpet) + third_party_processors
|
||||
end
|
||||
|
||||
# Public: A list of processors that you provide via plugins.
|
||||
|
|
Loading…
Reference in New Issue