# File text/format.rb, line 899 899: def expand(to_expand = nil) 900: to_expand = @text if to_expand.nil? 901: if to_expand.class == Array 902: to_expand.collect { |te| __expand(te) } 903: else 904: __expand(to_expand) 905: end 906: end