]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Render.pm
have the xapian stemmer use a language based on LANG
[ikiwiki.git] / IkiWiki / Render.pm
index 3422024d1e1c6d09ca701082c91ffa92b25d9a8d..272eb239a08a4ea2d2bb2683c01a3bee6b1bfa03 100644 (file)
@@ -191,7 +191,7 @@ sub render ($) { #{{{
                will_render($page, htmlpage($page), 1);
                return if $type=~/^_/;
                
-               my $content=htmlize($page, $type,
+               my $content=htmlize($page, $page, $type,
                        linkify($page, $page,
                        preprocess($page, $page,
                        filter($page, $page,
@@ -520,7 +520,7 @@ sub commandline_render () { #{{{
        $content=filter($page, $page, $content);
        $content=preprocess($page, $page, $content);
        $content=linkify($page, $page, $content);
-       $content=htmlize($page, $type, $content);
+       $content=htmlize($page, $page, $type, $content);
        $pagemtime{$page}=(stat($srcfile))[9];
 
        print genpage($page, $content);