*/ if (!defined('DOKU_INC')) die(); if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/'); require_once(dirname(__FILE__).'/core.php'); class syntax_plugin_mikioplugin_cardbody extends syntax_plugin_mikioplugin_core { public $tag = 'card-body'; public $hasEndTag = true; public function __construct() { $this->addCommonOptions('text-color vertical-align'); } public function getAllowedTypes() { return array('formatting', 'substition', 'disabled', 'container'); } public function getPType() { return 'normal'; } public function render_lexer_enter(Doku_Renderer $renderer, $data) { $classes = $this->buildClass($data); $styles = $this->buildStyle(array('color' => $data['text-color']), TRUE); $renderer->doc .= '
'; } public function render_lexer_exit(Doku_Renderer $renderer, $data) { $renderer->doc .= '
'; } } ?>