Method: CodeRay::Encoders::Terminal#end_group

Defined in:
lib/coderay/encoders/terminal.rb

#end_group(kind) ⇒ Object



162
163
164
165
166
167
168
169
170
# File 'lib/coderay/encoders/terminal.rb', line 162

def end_group kind
  if @opened.pop
    @color_scopes.pop
    @out << "\e[0m"
    if outer_color = @color_scopes.last[:self]
      @out << outer_color
    end
  end
end