class Kramdown::Options::Boolean
Helper class introducing a boolean type for specifying boolean values (true and false) as option types.
Public Class Methods
Source
# File lib/kramdown/options.rb, line 22 def self.===(other) FalseClass === other || TrueClass === other end
Return true if other is either true or false