Changeset 151 for trunk/lib/hpricot/parse.rb
- Timestamp:
- 06/06/2007 09:34:30 (18 months ago)
- Files:
-
- 1 modified
-
trunk/lib/hpricot/parse.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/hpricot/parse.rb
r147 r151 56 56 end 57 57 58 if !opts[:xml] and token[0] == :emptytag and ElementContent[token[1].downcase] != :EMPTY 59 token[0] = :stag 58 if !opts[:xml] and token[0] == :emptytag 59 token[1] = token[1].send(conv) 60 if ElementContent[token[1].downcase] != :EMPTY 61 token[0] = :stag 62 end 60 63 end 61 64
