aboutsummaryrefslogtreecommitdiff
path: root/_plugins/noop-converter.rb
diff options
context:
space:
mode:
Diffstat (limited to '_plugins/noop-converter.rb')
-rw-r--r--_plugins/noop-converter.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/_plugins/noop-converter.rb b/_plugins/noop-converter.rb
deleted file mode 100644
index 118d103..0000000
--- a/_plugins/noop-converter.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-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