/**
  * Create an output string from the given input.
  * @var string $input
  * @return string
  */
 public function transform($input, $context_object = null)
 {
     $this->num_indents = 0;
     $this->num_spaces = 0;
     return parent::transform($input, $context_object);
 }