summaryrefslogtreecommitdiff
path: root/inc/load.php
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2014-02-25 20:32:56 +0000
committerChristopher Smith <chris@jalakai.co.uk>2014-02-25 20:32:56 +0000
commit2ada8709d3a0cea872f117823b244b400fac5f87 (patch)
treefb4cbbfd2e56b17dff31ea3ff3341eed28362d72 /inc/load.php
parent252398f08d0752fd17b25e4afab70a6d0b6455a7 (diff)
downloadrpg-2ada8709d3a0cea872f117823b244b400fac5f87.tar.gz
rpg-2ada8709d3a0cea872f117823b244b400fac5f87.tar.bz2
add renderers to autolader
Diffstat (limited to 'inc/load.php')
-rw-r--r--inc/load.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/load.php b/inc/load.php
index 497dd6921..f1deffe19 100644
--- a/inc/load.php
+++ b/inc/load.php
@@ -96,6 +96,12 @@ function load_autoload($name){
'DokuWiki_Remote_Plugin' => DOKU_PLUGIN.'remote.php',
'DokuWiki_Auth_Plugin' => DOKU_PLUGIN.'auth.php',
+ 'Doku_Renderer' => DOKU_INC.'inc/parser/renderer.php',
+ 'Doku_Renderer_xhtml' => DOKU_INC.'inc/parser/xhtml.php',
+ 'Doku_Renderer_code' => DOKU_INC.'inc/parser/code.php',
+ 'Doku_Renderer_xhtmlsummary' => DOKU_INC.'inc/parser/xhtmlsummary.php',
+ 'Doku_Renderer_metadata' => DOKU_INC.'inc/parser/metadata.php',
+
);
if(isset($classes[$name])){