class Kramdown::Options::Boolean

Helper class introducing a boolean type for specifying boolean values (true and false) as option types.

Public Class Methods

===(other) click to toggle source

Return true if other is either true or false

   # File lib/kramdown/options.rb
22 def self.===(other)
23   FalseClass === other || TrueClass === other
24 end