# File text/format.rb, line 894
894:     def expand(to_expand = nil)
895:       to_expand = @text if to_expand.nil?
896:       if to_expand.class == Array
897:         to_expand.collect { |te| __expand(te) }
898:       else
899:         __expand(to_expand)
900:       end
901:     end