1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

Fix some references to extensions[:frontmatter]

This commit is contained in:
Ben Hollis 2014-03-29 17:21:49 -07:00
parent abeee38126
commit c1f7299cfd
2 changed files with 5 additions and 6 deletions

View file

@ -32,7 +32,6 @@ module Middleman::CoreExtensions
end
def after_configuration
app.extensions[:frontmatter] = self
app.ignore %r{\.frontmatter$}
::Middleman::Sitemap::Resource.send :include, ResourceInstanceMethods
@ -45,7 +44,7 @@ module Middleman::CoreExtensions
[:layout, :layout_engine].each do |opt|
data[opt] = fmdata[opt] unless fmdata[opt].nil?
end
if fmdata[:renderer_options]
data[:renderer_options] = {}
fmdata[:renderer_options].each do |k, v|
@ -71,7 +70,7 @@ module Middleman::CoreExtensions
# @private
# @return [Hash]
def raw_data
app.extensions[:frontmatter].data(source_file).first
app.extensions[:front_matter].data(source_file).first
end
# This page's frontmatter

View file

@ -84,8 +84,8 @@ module Middleman
# @param [String] path
# @return [String]
def get_template_data_for_file
if @app.extensions[:frontmatter]
@app.extensions[:frontmatter].template_data_for_file(@path)
if @app.extensions[:front_matter]
@app.extensions[:front_matter].template_data_for_file(@path)
else
File.read(File.expand_path(@path, source_dir))
end
@ -116,4 +116,4 @@ module Middleman
end
end
end
end
end