1<?php
2/**
3 * DokuWiki Plugin stepbystep (Syntax Component)
4 *
5 * @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
6 * @author  saggi <saggi@gmx.de>
7 */
8
9class syntax_plugin_stepbystep_innerstep extends syntax_plugin_stepbystep_step
10{
11    protected $tagcount = 2;
12
13    public function getMode(): string
14    {
15        return 'plugin_' . $this->getPluginName() . '_' . $this->getPluginComponent();
16    }
17
18}