Searched refs:parsestr (Results 1 – 1 of 1) sorted by relevance
| /plugin/masciimath/ |
| D | syntax.php | 15 public $parsestr; variable in syntax_plugin_masciimath 303 $this->parsestr = ltrim($this->parsestr); # Fjern indledende whitespaces 306 if ($this->parsestr != '') { 309 if (strpos($this->parsestr, $s['ascii']) === 0) { 310 $this->parsestr = substr($this->parsestr, strlen($s['ascii'])); 316 if ((! isset($sym)) and (preg_match ('/^[0-9.]+/', $this->parsestr, $m))) { 319 $this->parsestr = substr($this->parsestr, strlen($m[0])); 322 if ((! isset($sym)) and (preg_match ('/^"(.*?)"/', $this->parsestr, $m))) { 325 $this->parsestr = substr($this->parsestr, strlen($m[0])); 329 $ml = $ml_nobr = '<mi>'.substr($this->parsestr, 0, 1).'</mi>'; [all …]
|