Module: Jekyll::Convertible
Instance Method Summary collapse
-
#[](property) ⇒ Object
Accessor for data properties by Liquid.
-
#asset_file? ⇒ Boolean
Determine whether the document is an asset file.
-
#coffeescript_file? ⇒ Boolean
Determine whether the document is a CoffeeScript file.
-
#converters ⇒ Object
Determine which converter to use based on this convertible’s extension.
-
#do_layout(payload, layouts) ⇒ Object
Add any necessary layouts to this convertible document.
-
#hook_owner ⇒ Object
returns the owner symbol for hook triggering.
-
#invalid_layout?(layout) ⇒ Boolean
Checks if the layout specified in the document actually exists.
-
#merged_file_read_opts(opts) ⇒ Object
Returns merged option hash for File.read of self.site (if exists) and a given param.
-
#output_ext ⇒ Object
Determine the extension depending on content_type.
-
#place_in_layout? ⇒ Boolean
Determine whether the file should be placed into layouts.
-
#published? ⇒ Boolean
Whether the file is published or not, as indicated in YAML front-matter.
-
#read_yaml(base, name, opts = {}) ⇒ Object
Read the YAML frontmatter.
-
#render_all_layouts(layouts, payload, info) ⇒ Object
Recursively render layouts.
-
#render_liquid(content, payload, info, path) ⇒ Object
Render Liquid in the content.
-
#render_with_liquid? ⇒ Boolean
Determine whether the file should be rendered with Liquid.
-
#sass_file? ⇒ Boolean
Determine whether the document is a Sass file.
-
#to_liquid(attrs = nil) ⇒ Object
Convert this Convertible’s data to a Hash suitable for use by Liquid.
-
#to_s ⇒ Object
Returns the contents as a String.
-
#transform ⇒ Object
Transform the contents based on the content type.
-
#type ⇒ Object
The type of a document, i.e., its classname downcase’d and to_sym’d.
-
#write(dest) ⇒ Object
Write the generated page file to the destination directory.
Instance Method Details
#[](property) ⇒ Object
Accessor for data properties by Liquid.
property - The String name of the property to retrieve.
Returns the String value or nil if the property isn’t included.
287 288 289 290 291 292 293 |
# File 'lib/jekyll/convertible.rb', line 287 def [](property) if self.class::ATTRIBUTES_FOR_LIQUID.include?(property) send(property) else data[property] end end |
#asset_file? ⇒ Boolean
Determine whether the document is an asset file. Asset files include CoffeeScript files and Sass/SCSS files.
Returns true if the extname belongs to the set of extensions
that asset files use.
155 156 157 |
# File 'lib/jekyll/convertible.rb', line 155 def asset_file? sass_file? || coffeescript_file? end |
#coffeescript_file? ⇒ Boolean
Determine whether the document is a CoffeeScript file.
Returns true if extname == .coffee, false otherwise.
169 170 171 |
# File 'lib/jekyll/convertible.rb', line 169 def coffeescript_file? '.coffee'.eql?(ext) end |
#converters ⇒ Object
Determine which converter to use based on this convertible’s extension.
Returns the Converter instance.
100 101 102 |
# File 'lib/jekyll/convertible.rb', line 100 def converters @converters ||= site.converters.select { |c| c.matches(ext) }.sort end |
#do_layout(payload, layouts) ⇒ Object
Add any necessary layouts to this convertible document.
payload - The site payload Hash. layouts - A Hash of => “layout”.
Returns nothing.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'lib/jekyll/convertible.rb', line 242 def do_layout(payload, layouts) Jekyll.logger.debug "Rendering:", self.relative_path Jekyll.logger.debug "Pre-Render Hooks:", self.relative_path Jekyll::Hooks.trigger hook_owner, :pre_render, self, payload info = { :filters => [Jekyll::Filters], :registers => { :site => site, :page => payload['page'] } } # render and transform content (this becomes the final content of the object) payload["highlighter_prefix"] = converters.first.highlighter_prefix payload["highlighter_suffix"] = converters.first.highlighter_suffix if render_with_liquid? Jekyll.logger.debug "Rendering Liquid:", self.relative_path self.content = render_liquid(content, payload, info, path) end Jekyll.logger.debug "Rendering Markup:", self.relative_path self.content = transform # output keeps track of what will finally be written self.output = content render_all_layouts(layouts, payload, info) if place_in_layout? Jekyll.logger.debug "Post-Render Hooks:", self.relative_path Jekyll::Hooks.trigger hook_owner, :post_render, self end |
#hook_owner ⇒ Object
returns the owner symbol for hook triggering
144 145 146 147 148 |
# File 'lib/jekyll/convertible.rb', line 144 def hook_owner if is_a?(Page) :pages end end |
#invalid_layout?(layout) ⇒ Boolean
Checks if the layout specified in the document actually exists
layout - the layout to check
Returns true if the layout is invalid, false if otherwise
192 193 194 |
# File 'lib/jekyll/convertible.rb', line 192 def invalid_layout?(layout) !data["layout"].nil? && layout.nil? && !(self.is_a? Jekyll::Excerpt) end |
#merged_file_read_opts(opts) ⇒ Object
Returns merged option hash for File.read of self.site (if exists) and a given param
33 34 35 |
# File 'lib/jekyll/convertible.rb', line 33 def merged_file_read_opts(opts) (site ? site.file_read_opts : {}).merge(opts) end |
#output_ext ⇒ Object
Determine the extension depending on content_type.
Returns the String extension for the output file.
e.g. ".html" for an HTML output file.
86 87 88 89 90 91 92 93 94 |
# File 'lib/jekyll/convertible.rb', line 86 def output_ext if converters.all? { |c| c.is_a?(Jekyll::Converters::Identity) } ext else converters.map { |c| c.output_ext(ext) unless c.is_a?(Jekyll::Converters::Identity) }.compact.last end end |
#place_in_layout? ⇒ Boolean
Determine whether the file should be placed into layouts.
Returns false if the document is an asset file.
183 184 185 |
# File 'lib/jekyll/convertible.rb', line 183 def place_in_layout? !asset_file? end |
#published? ⇒ Boolean
Whether the file is published or not, as indicated in YAML front-matter
27 28 29 |
# File 'lib/jekyll/convertible.rb', line 27 def published? !(data.key?('published') && data['published'] == false) end |
#read_yaml(base, name, opts = {}) ⇒ Object
Read the YAML frontmatter.
base - The String path to the dir containing the file. name - The String filename of the file. opts - optional parameter to File.read, default at site configs
Returns nothing.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/jekyll/convertible.rb', line 44 def read_yaml(base, name, opts = {}) begin self.content = File.read(site.in_source_dir(base, name), merged_file_read_opts(opts)) if content =~ /\A(---\s*\n.*?\n?)^((---|\.\.\.)\s*$\n?)/m self.content = $POSTMATCH self.data = SafeYAML.load($1) end rescue SyntaxError => e Jekyll.logger.warn "YAML Exception reading #{File.join(base, name)}: #{e.}" rescue Exception => e Jekyll.logger.warn "Error reading file #{File.join(base, name)}: #{e.}" end self.data ||= {} unless self.data.is_a?(Hash) Jekyll.logger.abort_with "Fatal:", "Invalid YAML front matter in #{File.join(base, name)}" end self.data end |
#render_all_layouts(layouts, payload, info) ⇒ Object
Recursively render layouts
layouts - a list of the layouts payload - the payload for Liquid info - the info for Liquid
Returns nothing
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/jekyll/convertible.rb', line 203 def render_all_layouts(layouts, payload, info) # recursively render layouts layout = layouts[data["layout"]] Jekyll.logger.warn("Build Warning:", "Layout '#{data["layout"]}' requested in #{path} does not exist.") if invalid_layout? layout used = Set.new([layout]) while layout Jekyll.logger.debug "Rendering Layout:", path payload = Utils.deep_merge_hashes(payload, {"content" => output, "page" => layout.data}) self.output = render_liquid(layout.content, payload, info, File.join(site.config['layouts_dir'], layout.name)) # Add layout to dependency tree site.regenerator.add_dependency( site.in_source_dir(path), site.in_source_dir(layout.path) ) if layout = layouts[layout.data["layout"]] if used.include?(layout) layout = nil # avoid recursive chain else used << layout end end end end |
#render_liquid(content, payload, info, path) ⇒ Object
Render Liquid in the content
content - the raw Liquid content to render payload - the payload for Liquid info - the info for Liquid
Returns the converted content
111 112 113 114 115 116 117 118 119 |
# File 'lib/jekyll/convertible.rb', line 111 def render_liquid(content, payload, info, path) site.liquid_renderer.file(path).parse(content).render!(payload, info) rescue Tags::IncludeTagError => e Jekyll.logger.error "Liquid Exception:", "#{e.} in #{e.path}, included in #{path || self.path}" raise e rescue Exception => e Jekyll.logger.error "Liquid Exception:", "#{e.} in #{path || self.path}" raise e end |
#render_with_liquid? ⇒ Boolean
Determine whether the file should be rendered with Liquid.
Always returns true.
176 177 178 |
# File 'lib/jekyll/convertible.rb', line 176 def render_with_liquid? true end |
#sass_file? ⇒ Boolean
Determine whether the document is a Sass file.
Returns true if extname == .sass or .scss, false otherwise.
162 163 164 |
# File 'lib/jekyll/convertible.rb', line 162 def sass_file? %w[.sass .scss].include?(ext) end |
#to_liquid(attrs = nil) ⇒ Object
Convert this Convertible’s data to a Hash suitable for use by Liquid.
Returns the Hash representation of this Convertible.
124 125 126 127 128 129 130 131 |
# File 'lib/jekyll/convertible.rb', line 124 def to_liquid(attrs = nil) further_data = Hash[(attrs || self.class::ATTRIBUTES_FOR_LIQUID).map { |attribute| [attribute, send(attribute)] }] defaults = site.frontmatter_defaults.all(relative_path, type) Utils.deep_merge_hashes defaults, Utils.deep_merge_hashes(data, further_data) end |
#to_s ⇒ Object
Returns the contents as a String.
22 23 24 |
# File 'lib/jekyll/convertible.rb', line 22 def to_s content || '' end |
#transform ⇒ Object
Transform the contents based on the content type.
Returns the transformed contents.
70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/jekyll/convertible.rb', line 70 def transform converters.reduce(content) do |output, converter| begin converter.convert output rescue => e Jekyll.logger.error "Conversion error:", "#{converter.class} encountered an error while converting '#{path}':" Jekyll.logger.error("", e.to_s) raise e end end end |
#type ⇒ Object
The type of a document,
i.e., its classname downcase'd and to_sym'd.
Returns the type of self.
137 138 139 140 141 |
# File 'lib/jekyll/convertible.rb', line 137 def type if is_a?(Page) :pages end end |
#write(dest) ⇒ Object
Write the generated page file to the destination directory.
dest - The String path to the destination dir.
Returns nothing.
273 274 275 276 277 278 279 280 |
# File 'lib/jekyll/convertible.rb', line 273 def write(dest) path = destination(dest) FileUtils.mkdir_p(File.dirname(path)) File.open(path, 'wb') do |f| f.write(output) end Jekyll::Hooks.trigger hook_owner, :post_write, self end |