-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
End of table (e.g. </tr></table>) does not get generated. #3
Comments
@iliatimofeev Thanks. I've verified the issue. |
Also fixes GovReady#3. Checks whether the next nonspace is None which means that it is a blank line. Alters the test case to fit in with the Google Flavoured Markdown (GFM) spec.
Workaround for this, until PR#7 gets merged.
I have the above saved in monkey_patches.py, then in my main script I have:
This is basically grabbing the patched file from d5b8845, and using that if the test for this bug fails. Hopefully someone finds this useful in their codebase :) |
Workaround if you are now using Python3.9 with commonmark 0.9.1 until #7 and #8 is merged. This is mostly the same as above, but checks whether the parser has a blocks dict (this is introduced in commonmark 0.9.1) and ensures that it is using the correct table class.
|
have
have
The text was updated successfully, but these errors were encountered: