all repos — h3rald @ 7fc23344d777fd238b03ba7d3a0492f69858d2b7

The sources of https://h3rald.com

lib/glyph_context.rb

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
class Nanoc3::RuleContext

	require 'glyph'

	def glyph_config(item)
		Glyph['document.intro'] = RedCloth.new("#{item[:intro]}\n\n#{item[:extended_intro]}").to_html
		Glyph['document.date'] = item[:date].strftime "%A, %d %B %Y"
		Glyph['document.title'] = item[:title]
		Glyph['document.subtitle'] = item[:subtitle]
		Glyph['document.author'] = "Fabio Cevasco"
		Glyph.filter Glyph.file_load("#{Dir.pwd}/lib/data.glyph")
	end

	def glyph_pdf_for(item)
		Glyph['document.output'] = 'pdf'
		Glyph['output.pdf.generator'] = "prince"
		Glyph['site.root'] = ".."
		f = Pathname.new "#{Dir.pwd}/output#{item.identifier.gsub(/\/$/, '')}.glyph"
		f.parent.mkpath
		doc = %{
					h3rald.article[
						@identifier[#{item.identifier}]
						@content[section[#{item.raw_content}]]
					]
		}
		# Write the new raw file using Glyph's file_write method
		Glyph.file_write f, doc
		# Now compile the PDF (works if Prince is installed)
		Glyph.compile f.to_s
		begin
			f.unlink
			Pathname.new(f.to_s.gsub(/\.glyph$/, '.html')).unlink
		rescue
		end
	end

	def glyph_article_for(item)
		Glyph['document.output'] = 'html5'
		Glyph['site.root'] = ""
		filter :glyph
		layout 'default'
	end

end