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
10{
11    /** @inheritDoc */
12    public function getFormat()
13    {
14        return '@@PLUGIN_NAME@@';
15    }
16
17    // FIXME implement all methods of Doku_Renderer here
18}
19