Sha256: 0f129de7cf4243660c77bc58d0074fb0fb4c8895919b1fa10d4732296dd1b8b1

Contents?: true

Size: 892 Bytes

Versions: 4

Compression:

Stored size: 892 Bytes

Contents

# -*- encoding : utf-8 -*-
require 'sass'
include Machine
include MachineInput

store_machine_output :filetype => "css"

machine_input do 
  compress_css format(:format => :css)._render_core
end

def compress_css input
  begin
    Sass.compile input, :style=>:compressed
  rescue => e
    raise Card::Oops, "Stylesheet Error:\n#{ e.message }"
  end
end 

def clean_html?
  false
end

format do 
  def chunk_list  #turn off autodetection of uri's 
    :references
  end
end


format :html do
  view :editor, :mod=>PlainText::HtmlFormat
  
  view :core do |args|
    # FIXME: scan must happen before process for inclusion interactions to work, but this will likely cause
    # problems with including other css?
    process_content ::CodeRay.scan( _render_raw, :css ).div, :size=>:icon
  end
  
  view :content_changes, :mod=>CoffeeScript::HtmlFormat
end

def diff_args
   {:format=>:text}
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
card-1.15.pre2 mod/03_machines/set/type/css.rb
card-1.15.pre mod/03_machines/set/type/css.rb
wagn-1.14.9 mod/03_machines/set/type/css.rb
wagn-1.14.8 mod/03_machines/set/type/css.rb