You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When my text contains "&" sign in some specific places in the text, like the example below:
+ [What's the difference between semicolon and double ampersand &&](https://unix.stackexchange.com/questions/187145/whats-the-difference-between-semicolon-and-double-ampersand)
Parsedown returns the following error.
Bug: Uninitialized string offset: 1
I solved it by overwriting inlineSpecialCharacter, but please fix it.
protected function inlineSpecialCharacter($Excerpt)
{
if (isset($Excerpt['text'][1])) parent::inlineSpecialCharacter($Excerpt);
}
The text was updated successfully, but these errors were encountered:
When my text contains "&" sign in some specific places in the text, like the example below:
Parsedown returns the following error.
I solved it by overwriting
inlineSpecialCharacter
, but please fix it.The text was updated successfully, but these errors were encountered: