re-work callout tag conditional

Output a warning if the type is not supported and default to info
This commit is contained in:
Thomas McDonald 2015-04-24 22:21:12 +01:00
parent 4c3c402b0e
commit 58c208ec73
1 changed files with 5 additions and 6 deletions

View File

@ -6,12 +6,11 @@ module Jekyll
def initialize(tag_name, type, tokens)
super
@type = type
if type == "danger"
@type = "danger"
elsif type == "warning"
@type = "warning"
elsif type == "info"
type.strip!
if %w(info danger warning).include?(type)
@type = type
else
puts "#{type} callout not supported. Defaulting to info"
@type = "info"
end
end