class Chronic::Token

def untag(tag_class)

Returns nothing.

tag_class - The tag Class to remove.

Remove all tags of the given class.
def untag(tag_class)
  @tags.delete_if { |m| m.kind_of? tag_class }
end