Esempio n. 1
0
 function educate($t, $prev_token_last_char)
 {
     $t = parent::educate($t, $prev_token_last_char);
     if ($this->do_comma_quotes) {
         $t = $this->educateCommaQuotes($t);
     }
     if ($this->do_guillemets) {
         $t = $this->educateGuillemets($t);
     }
     if ($this->do_space_emdash) {
         $t = $this->spaceEmDash($t);
     }
     if ($this->do_space_endash) {
         $t = $this->spaceEnDash($t);
     }
     if ($this->do_space_colon) {
         $t = $this->spaceColon($t);
     }
     if ($this->do_space_semicolon) {
         $t = $this->spaceSemicolon($t);
     }
     if ($this->do_space_marks) {
         $t = $this->spaceMarks($t);
     }
     if ($this->do_space_frenchquote) {
         $t = $this->spaceFrenchQuotes($t);
     }
     if ($this->do_space_thousand) {
         $t = $this->spaceThousandSeparator($t);
     }
     if ($this->do_space_unit) {
         $t = $this->spaceUnit($t);
     }
     return $t;
 }