mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +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:
parent
4c3c402b0e
commit
58c208ec73
@ -6,12 +6,11 @@ module Jekyll
|
||||
|
||||
def initialize(tag_name, type, tokens)
|
||||
super
|
||||
type.strip!
|
||||
if %w(info danger warning).include?(type)
|
||||
@type = type
|
||||
if type == "danger"
|
||||
@type = "danger"
|
||||
elsif type == "warning"
|
||||
@type = "warning"
|
||||
elsif type == "info"
|
||||
else
|
||||
puts "#{type} callout not supported. Defaulting to info"
|
||||
@type = "info"
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user