Class: Jekyll::Converters::Bootstrap

Inherits:
Converter
  • Object
show all
Defined in:
lib/jekyll/converters/bootstrap.rb

Instance Method Summary collapse

Instance Method Details

#convert(content) ⇒ Object



14
15
16
# File 'lib/jekyll/converters/bootstrap.rb', line 14

def convert(content)
    content.downcase
end

#matches(ext) ⇒ Object



6
7
8
# File 'lib/jekyll/converters/bootstrap.rb', line 6

def matches(ext)
    ext =~ /^\.downcase$/i
end

#output_ext(ext) ⇒ Object



10
11
12
# File 'lib/jekyll/converters/bootstrap.rb', line 10

def output_ext(ext)
    ".html"
end