Class: Awestruct::Handlers::TiltHandler

Inherits:
BaseTiltHandler show all
Defined in:
lib/awestruct/handlers/tilt_handler.rb

Constant Summary collapse

INTERPOLATION_CHAIN =
Awestruct::HandlerChain.new( Awestruct::Handlers::TiltMatcher.new(),
  Awestruct::Handlers::FileHandler,
  Awestruct::Handlers::FrontMatterHandler,
  Awestruct::Handlers::InterpolationHandler,
  Awestruct::Handlers::TiltHandler,
  Awestruct::Handlers::LayoutHandler
)
NON_INTERPOLATION_CHAIN =
Awestruct::HandlerChain.new( Awestruct::Handlers::NonInterpolatingTiltMatcher.new(),
  Awestruct::Handlers::FileHandler,
  Awestruct::Handlers::FrontMatterHandler,
  Awestruct::Handlers::TiltHandler,
  Awestruct::Handlers::LayoutHandler
)

Instance Attribute Summary

Attributes inherited from BaseHandler

#delegate, #site

Instance Method Summary collapse

Methods inherited from BaseTiltHandler

#content_syntax, #double_extension?, #input_extension, #options, #output_extension, #output_filename, #rendered_content, #simple_name, #source_file_name

Methods inherited from BaseHandler

#content_line_offset, #content_syntax, #dependencies, #execute_shell, #front_matter, #inherit_front_matter, #input_mtime, #output_extension, #output_filename, #output_path, #path, #raw_content, #relative_source_path, #rendered_content, #simple_name, #stale?, #to_chain

Constructor Details

#initialize(site, delegate) ⇒ TiltHandler

Returns a new instance of TiltHandler.



52
53
54
# File 'lib/awestruct/handlers/tilt_handler.rb', line 52

def initialize(site, delegate)
  super( site, delegate )
end