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:
parent
abeee38126
commit
c1f7299cfd
2 changed files with 5 additions and 6 deletions
|
@ -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
|
||||
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue