Returns the number of tokens.
Text and block tokens are counted.
# File lib/coderay/encoders/count.rb, line 29 def begin_group kind @count += 1 end
# File lib/coderay/encoders/count.rb, line 25 def text_token text, kind @count += 1 end
# File lib/coderay/encoders/count.rb, line 19 def finish options output @count end
# File lib/coderay/encoders/count.rb, line 13 def setup options super @count = 0 end