d37970c ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
module Jekyll class NoOpConverter < Converter safe true priority :high def matches(ext) ext == '.slides' end def output_ext(ext) ".html" end def convert(content) content end end end