# File Text/Format.rb, line 671
        def format(to_wrap = nil)
            to_wrap = @text if to_wrap.nil?
            if to_wrap.class == Array
                __format(to_wrap[0])
            else
                __format(to_wrap)
            end
        end