Lines Matching +full:- +full:- +full:format
27 * @var string the format (xhtml, ...)
29 private string $format; variable in ComboStrap\\MarkupDynamicRender
40 public function __construct($format) argument
42 $this->format = $format;
43 $renderer = p_get_renderer($format);
45 throw new ExceptionNotFound("No renderer was found for the format $format");
48 $this->renderer = $renderer;
49 $this->renderer->reset();
50 $this->renderer->smileys = getSmileys();
51 $this->renderer->entities = getEntities();
52 $this->renderer->acronyms = getAcronyms();
53 $this->renderer->interwiki = getInterwiki();
59 public static function create($format): MarkupDynamicRender argument
69 return new MarkupDynamicRender($format);
83 if ($this->renderer instanceof \Doku_Renderer_xhtml) {
84 $this->renderer->date_at = $date_at;
101 if (method_exists($this->renderer, $instruction[0])) {
102 … call_user_func_array(array(&$this->renderer, $instruction[0]), $instruction[1] ?: array());
107 // $data = array($this->format, & $this->renderer->doc);
109 $string = $this->renderer->doc;
110 $this->renderer->doc = '';
119 …throw new ExceptionCompile("Error while rendering instructions. Error was: {$e->getMessage()}", "d…
125 return "Dynamic $this->format renderer";