fix some bugs.
This commit is contained in:
parent
d7a9864ee2
commit
ec844d2148
@ -8,7 +8,11 @@ def body_class(item)
|
||||
end
|
||||
|
||||
def body_id(item)
|
||||
item.identifier.chop[1..-1].gsub(/\/|_/, "-")
|
||||
if id = item.identifier.chop[1..-1]
|
||||
id.gsub(/\/|_/, "-")
|
||||
else
|
||||
nil
|
||||
end
|
||||
end
|
||||
|
||||
def body_attributes(item)
|
||||
|
@ -1,3 +1,4 @@
|
||||
require 'sass'
|
||||
module Sass
|
||||
module Tree
|
||||
class VariableNode < Node
|
||||
|
Loading…
Reference in New Issue
Block a user