module Jekyll::Converters::StretcherExtensions

Public Instance Methods

sass_configs() click to toggle source
# File lib/jekyll-stretcher.rb, line 97
def sass_configs
  sass_build_configuration_options(
    :style                => sass_style,
    :syntax               => syntax,
    :filename             => filename,
    :output_path          => output_path,
    :source_map_file      => source_map_file,
    :load_paths           => sass_load_paths,
    :importer             => StretcherImporter,
    :omit_source_map_url  => !sourcemap_required?,
    :source_map_contents  => true,
    :line_comments_option => line_comments_option
  )
end