# File lib/sass/tree/comment_node.rb, line 96 def _to_s(tabs = 0, _ = nil) return if invisible? spaces = (' ' * [tabs - 1 - value[/^ */].size, 0].max) content = value.gsub(/^/, spaces) content.gsub!(/\n +(\* *(?!\/))?/, ' ') if style == :compact content end