Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^6: Wierd behaviour with HTML::Entities::decode_entities()

by ikegami (Patriarch)
on Dec 14, 2009 at 18:05 UTC ( [id://812752]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Wierd behaviour with HTML::Entities::decode_entities()
in thread Wierd behaviour with HTML::Entities::decode_entities()

If HTML::Entities were to decode " to ", it would be buggy. I did understand you correctly. Does what I said make more sense now?

I wonder if decode_entities (not decode_entities_old) handles it correctly?

I don't know if that's legal in SGML/HTML — unescaped ampersand — but yes.

$ perl -MHTML::Entities -le'print decode_entities """' "

Replies are listed 'Best First'.
Re^7: Wierd behaviour with HTML::Entities::decode_entities()
by Baz (Friar) on Dec 14, 2009 at 19:05 UTC
    You can test with this -
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w +3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sv" lang="sv"> <head> <meta http-equiv="Content-Type" content="text/html;charset=iso-885 +9-1"/> </head> <body> Mic i vĀr replokal &amp;quot;The Dungeon&amp;quot; </body> </html>
    Now it very clear what the problem is...

      If you get

      Mic i vĀr replokal &amp;quot;The Dungeon&amp;quot;

      and you're expecting

      Mic i vĀr replokal "The Dungeon"

      the problem is on their end. As you can see by loading that page in a browser,

      Mic i vĀr replokal &amp;quot;The Dungeon&amp;quot;

      means

      Mic i vĀr replokal &quot;The Dungeon&quot;

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://812752]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-18 03:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found