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
Heterogeneous list #152
Merged
Merged
Heterogeneous list #152
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lepture
reviewed
Feb 6, 2018
1. one | ||
2. two | ||
* three | ||
- foobar |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep a newline at EOF.
</ul> | ||
</li> | ||
<li>foobar</li> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep a newline at EOF.
@frostming I think your fix is good enough. |
cmccandless
pushed a commit
to cmccandless/multisite
that referenced
this pull request
Oct 11, 2018
This PR updates [mistune](https://pypi.org/project/mistune) from **0.8.3** to **0.8.4**. <details> <summary>Changelog</summary> ### 0.8.4 ``` ~~~~~~~~~~~~~ Released on Oct. 11, 2018 * Support an escaped pipe char in a table cell. `150`_ * Fix ordered and unordered list. `152`_ * Fix spaces between = in HTML tags * Add max_recursive_depth for list and blockquote. * Fix fences code block. .. _`150`: lepture/mistune#150 .. _`152`: lepture/mistune#152 ``` </details> <details> <summary>Links</summary> - PyPI: https://pypi.org/project/mistune - Changelog: https://pyup.io/changelogs/mistune/ - Repo: https://github.com/lepture/mistune </details>
clrpackages
pushed a commit
to clearlinux-pkgs/mistune
that referenced
this pull request
Oct 15, 2018
….8.4 Hsiaoming Yang (10): Merge pull request #150 from lazyfrosch/pipe-char-in-table Merge pull request #152 from frostming/hetero-list Merge pull request #153 from hugovk/patch-1 Fix spaces between = in HTML tags Add changelog for v0.8.4 Add max_recursive_depth for list and blockquote. Fix fences code block. Add test cases for nested blockquote and list Build without cython Version bump 0.8.4 Hugo (3): Update Python versions Update Python versions Remove redundant version check Hyunwoo Park (1): Fix minors in tests (#175) Markus Frosch (1): Support an escaped pipe char in a table cell frostming (3): Fix parsing error #151 on heterogeneous list hetero list test case newlines at EOF Version 0.8.4 ~~~~~~~~~~~~~ Released on Oct. 11, 2018 * Support an escaped pipe char in a table cell. `#150`_ * Fix ordered and unordered list. `#152`_ * Fix spaces between = in HTML tags * Add max_recursive_depth for list and blockquote. * Fix fences code block. .. _`#150`: lepture/mistune#150 .. _`#152`: lepture/mistune#152
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Fix parsing error of heterogeneous list
I still keep the behavior of parsing different bullets into the same list, while GitHub recognizes them as separate lists.
Please tell me which one is preferred.