Hi,
I added 3 lines to AutoCreatePage.php behind line 94:
$newPageContent = str_replace ( "{" , "{" , str_replace ( "}" , "}" , $newPageContent ) );
$newPageContent = str_replace ( "|" , "|" , $newPageContent );
$newPageContent = str_replace ( """ , "#" , $newPageContent );
This makes the use of templates much easier. Just write in the template what you need with {;, };, and |; and "; into a template. Include the template in the parameter, and all works as expected. Made my life much easier...