# File Text/Format.rb, line 699
        def expand(to_expand = nil)
            to_expand = @text if to_expand.nil?
            if to_expand.class == Array
                to_expand.collect { |te| __expand(te) }
            else
                __expand(to_expand)
            end
        end