xref: /plugin/dev/skel/renderer_xhtml.php (revision 70316b849e063a6d74c051966388525c6a62b604)
1<?php
2/**
3 * DokuWiki Plugin @@PLUGIN_NAME@@ (Renderer Component)
4 *
5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
6 * @author  @@AUTHOR_NAME@@ <@@AUTHOR_MAIL@@>
7 */
8class @@PLUGIN_COMPONENT_NAME@@ extends Doku_Renderer_xhtml
9{
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
26