I am importing HTML pages using HTML import plugin for WordPress.
I have a code snippet for google maps, which is imported.
However, after import, it enclos
$content = str_replace(']]>', ']]>', $content);
wp-includes\post-template.php line 167
You can also do in this way in template page file:
<?php $content = str_replace(']]>', ']]>', the_content()); echo $content; ?>