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