class Jekyll::PugConverter

Public Instance Methods

convert(content) click to toggle source
# File lib/jekyll-pug/pug-renderer.rb, line 156
def convert(content)
    return content
end
matches(ext) click to toggle source
# File lib/jekyll-pug/pug-renderer.rb, line 148
def matches(ext)
    ext =~ /^\.pug$/i
end
output_ext(ext) click to toggle source
# File lib/jekyll-pug/pug-renderer.rb, line 152
def output_ext(ext)
    $CompileFormat
end