Hello,
I have a quick question on how the description parameter works.
Going back to their example:
pnt = kml.newpoint(name="Kirstenbosch", description="A botanical Garden",
coords=[(18.432314,-33.988862)]) # lon, lat optional height
If I wanted in a new line to put something like "A very beautiful botanical garden", is there a way to do that?
I don't want all of my info all in the same line which, is why I ask
so it would in this case be like this:
A botanical Garden
A very beautiful botanical garden
instead of this:
A botanical Garden A very beautiful botanical garden
thanks =)