Topic: Nospin markers now inserted as Html Comments
When using the Mpc Editor (in Source mode), you can right-click and select various nospin/dospin markers for placement into your file.
The old behavior would place markers like this:
[Nospin]
[Dospin]
[Dospin]
Starting with Mpc version 510, the new behavior places markers as Html Comments:
<!-- [Nospin] -->
<!-- [Dospin] -->
<!-- [Dospin] -->
This works fine when placing the markers in Html portions of your page. In the rare case when these markers have to be placed in NON-Html areas, you'll need to modify the comment characters as follows:
Between <style> tags:
<style>
/* [Nospin] */
/* [Dospin] */
</style>
/* [Nospin] */
/* [Dospin] */
</style>
Between <script> tags (each marker MUST be on a line by itself):
<script>
// [Nospin]
// [Dospin]
</script>
// [Nospin]
// [Dospin]
</script>
More info: Protect areas from spinning with Nospin markers.