aboutsummaryrefslogtreecommitdiff
path: root/_plugins/noop-converter.rb
blob: 118d10333103abf1e564861b4a38791c1a2bd247 (about) (plain) (blame)
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