aboutsummaryrefslogtreecommitdiff
path: root/_plugins
diff options
context:
space:
mode:
Diffstat (limited to '_plugins')
-rw-r--r--_plugins/generate-torrent.rb2
-rw-r--r--_plugins/linter.rb6
2 files changed, 4 insertions, 4 deletions
diff --git a/_plugins/generate-torrent.rb b/_plugins/generate-torrent.rb
index 0c4cd72..a2077bc 100644
--- a/_plugins/generate-torrent.rb
+++ b/_plugins/generate-torrent.rb
@@ -6,7 +6,7 @@ module Jekyll
MEDIA_EXTENSION = {
'podcasts' => 'ogg',
- 'screencasts' => 'webm'
+ 'screencasts' => 'mkv'
}
def generate(site)
diff --git a/_plugins/linter.rb b/_plugins/linter.rb
index 94ebc67..c0059c9 100644
--- a/_plugins/linter.rb
+++ b/_plugins/linter.rb
@@ -107,9 +107,9 @@ module Jekyll
end
if name == 'screencasts' then
- webm = "resources/screencasts/#{date}-#{slug}.webm"
- unless File.exist? webm then
- raise "Missing WebM file '#{webm}'"
+ mkv = "resources/screencasts/#{date}-#{slug}.mkv"
+ unless File.exist? mkv then
+ raise "Missing MKV file '#{mkv}'"
end
end
end