Oops - the change to the frontmatter regex broke it somehow. This reverts that change (but also reigns in the file_deleted hook).

i18n_v4
Ben Hollis 2011-11-30 22:06:00 -08:00
parent 17e3735d44
commit 1b330e7a27
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ module Middleman::CoreExtensions::FrontMatter
frontmatter.touch_file(file)
end
file_deleted do |file|
file_deleted FrontMatter.matcher do |file|
frontmatter.remove_file(file)
end
@ -52,7 +52,7 @@ module Middleman::CoreExtensions::FrontMatter
class FrontMatter
class << self
def matcher
%r{^source/.*\.html}
%r{source/.*\.html}
end
end
@ -121,4 +121,4 @@ module Middleman::CoreExtensions::FrontMatter
[data, content]
end
end
end
end