Update dependency markdown-it-py to v2 #103
Open
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.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.1.0
->==2.2.0
By merging this PR, the below vulnerabilities will be automatically resolved:
Release Notes
executablebooks/markdown-it-py
v2.2.0
Compare Source
What's Changed
New Contributors
Thanks to 🎉
Full Changelog: executablebooks/markdown-it-py@v2.1.0...v2.2.0
v2.1.0
Compare Source
This release is primarily to replace the
attrs
package dependency,with the built-in Python
dataclasses
package.This should not be a breaking change, for most use cases.
Rule
/Delimiter
classes fromattrs
todataclass
(#211)Token
class fromattrs
todataclass
(#211)NestedTokens
andnest_tokens
IndexError
(#207)v2.0.1
Compare Source
inline_definitions
option.This option allows for
definition
token to be inserted into the token stream, at the point where the definition is located in the source text.It is useful for cases where one wishes to capture a "loseless" syntax tree of the parsed Markdown (in conjunction with the
store_labels
option).v2.0.0
Compare Source
mdurl
andpunycode
for URL normalisation (thanks to @hukkin!).This port fixes the outstanding CommonMark compliance tests.
AttrDict
.This is no longer used is core or mdit-py-plugins, instead standard dictionaries are used.
__all__
to signal re-exports