From: intrigeri Date: Mon, 2 Aug 2010 11:39:06 +0000 (+0200) Subject: Run the preprocess hooks in scan mode *before* the scan hooks. X-Git-Tag: 3.20100831~33^2~5 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/a3624aba40a5999e36dc2d5aa9017bfa9b445b57 Run the preprocess hooks in scan mode *before* the scan hooks. --- diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index a653ab2da..9921915b4 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -174,15 +174,15 @@ sub scan ($) { } delete $typedlinks{$page}; + # Preprocess in scan-only mode. + preprocess($page, $page, $content, 1); + run_hooks(scan => sub { shift->( page => $page, content => $content, ); }); - - # Preprocess in scan-only mode. - preprocess($page, $page, $content, 1); } else { will_render($file, $file, 1);