"ui-textarea", ]; public array $options = []; protected bool $echoRaw = false; public function parse(/*\Picae\Compiler\Context*/ &$context, ?string $arguments, string $token) : string { if ($token === 'ui.textarea.raw') { $this->echoRaw = true; } return sprintf("echoRaw(%s)->buildHtml($arguments) ?>", $this->echoRaw ? 'true' : 'false'); } protected function setValue($value) : void { $this->echoRaw ? $this->html($value) : $this->text($value); } public function echoRaw(bool $set) : self { $this->echoRaw = $set; return $this; } }