-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Labels
Description
Hi, thank you for your work. I have detect a bug on windows platform.
You can't detect new line in windows, because new line sometime is "\n" and sometime is "\r\n" and not only "\r" (like PHP_EOL).
I fix the newLine function to work on both systems. Can you add it to your release please ?
More docs here : https://stackoverflow.com/questions/21373478/n-vs-php-eol-vs-br
protected function newLine()
{
$r = in_array(
"\n", array(
$this->current_char,
$this->current_word
)
);
if (!$r){
$r = in_array(
PHP_EOL, array(
$this->current_char,
$this->current_word
)
);
}
return $r;
}
Reactions are currently unavailable