{$Element['handler']}($Element['text']); else return parent::element($Element); } protected function blockFencedCode($Line) { $Block = parent::blockFencedCode($Line); if ($Block === null) return $Block; $Block['custom'] = false; if (isset($Block['element']['text']['attributes'])) { foreach ($Block['element']['text']['attributes'] as $attr) { $spl = explode('__', $attr); if ($spl[0] === 'language-befungerunner') { $Block['element']['handler'] = 'handleBef93'; $Block['custom'] = true; $Block['element']['text']['b93_speed'] = null; $Block['element']['text']['b93_interactive'] = true; $Block['element']['text']['b93_editable'] = true; foreach ($spl as $param) { if (startsWith($param, 'speed-')) $Block['element']['text']['b93_speed'] = intval( substr($param, strlen('speed-'))); if (startsWith($param, 'interactive-')) $Block['element']['text']['b93_interactive'] = boolval(substr($param, strlen('interactive-'))); if (startsWith($param, 'editable-')) $Block['element']['text']['b93_editable'] = boolval(substr($param, strlen('editable-'))); } return $Block; } else if ($spl[0] === 'language-bfjoustrunner') { $Block['element']['handler'] = 'handleBFJoust'; $Block['custom'] = true; return $Block; } } } return $Block; } protected function blockFencedCodeComplete($Block) { if (! $Block['custom']) { return parent::blockFencedCodeComplete($Block); } $Block['element']['custom'] = true; return $Block; } protected function handleBFJoust(array $Element) { $split = preg_split("/-{16,}/", $Element['text']); return Website::inst()->fragments->WidgetBFJoust(trim($split[0]), trim($split[1])); } protected function handleBef93(array $Element) { return Website::inst()->fragments->WidgetBefunge93($Element['text'], '', $Element['b93_interactive'], $Element['b93_speed'], $Element['b93_editable']); } protected function blockTable($Line, array $Block = null) { // https://stackoverflow.com/a/46346412/1761622 $Block = parent::blockTable($Line, $Block); if ($Block === null) return $Block; if (!key_exists('element', $Block)) return $Block; $Block['element']['attributes']['class'] = 'stripedtable'; return $Block; } }