|
# File text/format.rb, line 910
910: def unexpand(to_unexpand = nil)
911: to_unexpand = @text if to_unexpand.nil?
912: if to_unexpand.class == Array
913: to_unexpand.collect { |te| v << __unexpand(te) }
914: else
915: __unexpand(to_unexpand)
916: end
917: end
|