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, line 22 def self.===(other) FalseClass === other || TrueClass === other end