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
For, example, if we have the following markdown:
| F1 | F2 | F3 | | - | - | - | | 1 | 2 | 3 |
Should be render like https://gist.github.com/zyxkad/dfee41cf4a1cbdd75c04e8df3253c11b
<table> <thead> <tr> <th>F1</th> <th>F2</th> <th>F3</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> </tbody> </table>
But blackfriday cannot render it: https://go.dev/play/p/JvlKF5PozFh
<p>| F1 | F2 | F3 | | - | - | - | | 1 | 2 | 3 |</p>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For, example, if we have the following markdown:
Should be render like https://gist.github.com/zyxkad/dfee41cf4a1cbdd75c04e8df3253c11b
But blackfriday cannot render it: https://go.dev/play/p/JvlKF5PozFh
The text was updated successfully, but these errors were encountered: