Markdown engine should not be nil

This commit is contained in:
Tim Bates 2012-07-15 23:02:04 +09:30
parent e59241c036
commit aa35b8f0f0

View file

@ -30,7 +30,7 @@ module Middleman
if markdown_engine == :redcarpet
require "middleman-core/renderers/redcarpet"
::Tilt.prefer(::Middleman::Renderers::RedcarpetTemplate)
elsif markdown_engine.nil?
elsif not markdown_engine.nil?
# Map symbols to classes
markdown_engine_klass = if markdown_engine.is_a? Symbol
engine = markdown_engine.to_s
@ -54,4 +54,4 @@ module Middleman
end
end
end
end