| 
<?php
 return array(
 
 // execution macro: this defines the methods you want to call, each and every one of these "cleans" something
 // call the methods how many times you want, change the order as needed
 /*
 'pre_internal_templating_macro' => array(
 
 'decode_character_entities',
 
 ),
 */
 
 'macro' => array(
 
 //'decode_character_entities',
 //'tidy_code',
 
 ),
 
 'character_entity_encoding_type' => 'raw', // decimal, hexadecimal, named
 
 
 );
 
 ?>
 
 |