diff --git a/inc/parserutils.php b/inc/parserutils.php
index dc6fe4fb9b5d5c825d7afa660f7bca41d1059a6b..77ef842abc0f277f9a6624cc722277dea2bf3580 100644
--- a/inc/parserutils.php
+++ b/inc/parserutils.php
@@ -228,7 +228,8 @@ function p_get_instructions($text){
   }
 
   // Do the parsing
-  $p    = $Parser->parse($text);
+  trigger_event('PARSER_WIKITEXT_PREPROCESS', $text);
+  $p = $Parser->parse($text);
 //  dbg($p);
   return $p;
 }
@@ -472,7 +473,9 @@ function p_render($mode,$instructions,& $info){
   //set info array
   $info = $Renderer->info;
 
-  // Return the output
+  // Post process and return the output
+  $data = array($mode,& $Renderer->doc);
+  trigger_event('RENDERER_CONTENT_POSTPROCESS',$data);
   return $Renderer->doc;
 }