1<?php 2 3/** 4 * DokuWiki Plugin @@PLUGIN_NAME@@ (Renderer Component) 5 * 6 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html 7 * @author @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@> 8 */ 9class @@PLUGIN_COMPONENT_NAME@@ extends Doku_Renderer_xhtml 10{ 11 /** 12 * @inheritDoc 13 * Make available as XHTML replacement renderer 14 */ 15 public function canRender($format) 16 { 17 if ($format == 'xhtml') { 18 return true; 19 } 20 return false; 21 } 22 23 // FIXME override any methods of Doku_Renderer_xhtml here 24} 25