HTML/XHTML Markup
The XHTML markup for this example contains a single element. This is a placeholder where the markup showing the current weather will be inserted.
<body>
<div id='_PAGEFLAKES_content'/>
</body>
The id attribute is prefixed with _PAGEFLAKES_. This is to prevent two instances of the same flake from having conflicting id attributes within the same generated XHTML Document. The Pageflakes framework replaces this string with a unique identifier for every flake instance on a given page-set.
For example, if this flake appears twice in a page-set, the Generated XHTML Document will look something like:
<body>
<div id='abc12345current_weather'/>
</body>
and
<body>
<div id='xyz45678current_weather' />
</body>

