We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Software Requirements || | --- | --- | | **SDK Version** | Emscripten 1.39.0 |
Tableheader has continuous delimiter, is not parser correctly.
Parsedown.php: 958
$header = trim($header); $header = trim($header, '|');
I making this modification, it works...
$header = trim($header); //$header = trim($header, '|'); if ($header[0] === '|') { $header = substr($header, 1, -1); }
The text was updated successfully, but these errors were encountered:
// bugs for `| header-1 ||` or `|| header-2|` if (substr($header, -1) === '|') { $header = substr($header, 1, -1); }
Sorry, something went wrong.
No branches or pull requests
Tableheader has continuous delimiter, is not parser correctly.
Parsedown.php: 958
I making this modification, it works...
The text was updated successfully, but these errors were encountered: