think the KML example below shows a bug, please correct me if I'm
wrong so I can change my HTML. I am using Google Earth 4.3.7284.
I would expect the pop-up to say "X - X (< 5 z) . ", instead it says
"X - X (".
If I change the < to a > it works as expected. Do I need to escape
within CDATA? I thought the point of CDATA was to eliminate the need
to escape.
NR
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="
http://earth.google.com/kml/2.2">
<Document>
<name>KmlFile</name>
<Style id="sn_ylw-pushpin">
</Style>
<Style id="sh_ylw-pushpin">
<IconStyle>
<scale>1.2</scale>
</IconStyle>
</Style>
<StyleMap id="msn_ylw-pushpin">
<Pair>
<key>normal</key>
<styleUrl>#sn_ylw-pushpin</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#sh_ylw-pushpin</styleUrl>
</Pair>
</StyleMap>
<Placemark>
<name>ASDF</name>
<description> <![CDATA[X - X (< 5 z) .
<br><br><br>]]></description>
<styleUrl>#msn_ylw-pushpin</styleUrl>
<Point>
<coordinates>-116.9590990412384,46.41677724148703,50</coordinates>
</Point>
</Placemark>
</Document>
</kml>