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
index : euandre.org | ||
Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
aboutsummaryrefslogtreecommitdiff |
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