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
45
|
# File 'lib/html-to-css.rb', line 10
def initialize(filename=nil)
if filename then
@doc = Rexle.new File.read(filename)
else
a = Dir.glob("*.html")
@doc = Rexle.new File.read(a.pop)
a.each {|file| merge(@doc, Rexle.new(File.read(file)).root ) }
end
@selectors = []
@nocss = ['head', 'ul li ul', 'p a', 'div div \w+']
@css = []
@elements = {
a: "background-color: :color; ",
body: "background-color: :color;
align: center;",
div: "background-color: :color;",
h1: "background-color: :color;
color: #fff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 1.3em;",
h2: "background-color: :color;
color: #fff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 1.3em;",
html: "background-color: :color;",
li: "background-color: :color;",
p: "background-color: :color;",
ul: "background-color: :color;"
}
end
|