Module: Jekyll::Convertible
Instance Method Summary collapse
-
#content_type ⇒ Object
Determine which formatting engine to use based on this convertible’s extension.
-
#do_layout(payload, layouts) ⇒ Object
Add any necessary layouts to this convertible document
layouts
is a Hash of => “layout”site_payload
is the site payload hash. -
#read_yaml(base, name) ⇒ Object
Read the YAML frontmatter
base
is the String path to the dir containing the filename
is the String filename of the file. -
#render_haml_in_context(haml_engine, params = {}) ⇒ Object
Sets up a context for Haml and renders in it.
-
#to_s ⇒ Object
Return the contents as a string.
-
#transform ⇒ Object
Transform the contents based on the file extension.
Instance Method Details
#content_type ⇒ Object
Determine which formatting engine to use based on this convertible’s extension
Returns one of :textile, :markdown or :unknown
55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/jekyll/convertible.rb', line 55 def content_type case self.ext[1..-1] when /textile/i return 'textile' when /markdown/i, /mkdn/i, /md/i, /mkd/i return 'markdown' when /haml/i return 'haml' end return 'unknown' end |
#do_layout(payload, layouts) ⇒ Object
Add any necessary layouts to this convertible document
+layouts+ is a Hash of {"name" => "layout"}
+site_payload+ is the site payload hash
Returns nothing
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/jekyll/convertible.rb', line 84 def do_layout(payload, layouts) info = { :filters => [Jekyll::Filters], :registers => { :site => self.site } } # render and transform content (this becomes the final content of the object) payload["content_type"] = self.content_type if self.content_type == "haml" self.transform self.content = render_haml_in_context(self.content, :site => self.site, :page => ClosedStruct.new(payload["page"])) else self.content = Liquid::Template.parse(self.content).render(payload, info) self.transform end # output keeps track of what will finally be written self.output = self.content # recursively render layouts layout = layouts[self.data["layout"]] while layout payload = payload.deep_merge({"content" => self.output, "page" => layout.data}) if site.config['haml'] && layout.content.is_a?(Haml::Engine) self.output = render_haml_in_context(layout.content, :site => ClosedStruct.new(payload["site"]), :page => ClosedStruct.new(payload["page"]), :content => payload["content"]) else self.output = Liquid::Template.parse(layout.content).render(payload, info) end layout = layouts[layout.data["layout"]] end end |
#read_yaml(base, name) ⇒ Object
Read the YAML frontmatter
+base+ is the String path to the dir containing the file
+name+ is the String filename of the file
Returns nothing
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/jekyll/convertible.rb', line 22 def read_yaml(base, name) self.content = File.read(File.join(base, name)) self.data ||= {} if self.content =~ /^(---\s*\n.*?\n?)^(---\s*$\n?)/m self.content = self.content[($1.size + $2.size)..-1] self.data = self.data.deep_merge(YAML.load($1) || {}) end end |
#render_haml_in_context(haml_engine, params = {}) ⇒ Object
Sets up a context for Haml and renders in it. The context has accessors matching the passed-in hash, e.g. “site”, “page” and “content”, and has helper modules mixed in.
Returns String.
72 73 74 75 76 77 |
# File 'lib/jekyll/convertible.rb', line 72 def render_haml_in_context(haml_engine, params={}) context = ClosedStruct.new(params) context.extend(HamlHelpers) context.extend(::Helpers) if defined?(::Helpers) haml_engine.render(context) end |
#to_s ⇒ Object
Return the contents as a string
13 14 15 |
# File 'lib/jekyll/convertible.rb', line 13 def to_s self.content || '' end |
#transform ⇒ Object
Transform the contents based on the file extension.
Returns nothing
36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/jekyll/convertible.rb', line 36 def transform case self.content_type when 'textile' self.ext = ".html" self.content = self.site.textile(self.content) when 'markdown' self.ext = ".html" self.content = self.site.markdown(self.content) when 'haml' self.ext = ".html" # Actually rendered in do_layout. self.content = Haml::Engine.new(self.content, :attr_wrapper => %{"}, :filename=>self.name) end end |