0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00

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

View File

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