*/ class renderer_plugin_dbquery extends \Doku_Renderer { /** @var bool remember if the first code block has been found already */ protected $codeFound = false; /** @inheritDoc */ public function getFormat() { return 'dbquery'; } /** @inheritDoc */ public function code($text, $lang = null, $file = null) { if ($this->codeFound) return; $this->codeFound = true; $this->doc = $text; } }