mirror of
https://github.com/mkdocs/mkdocs.git
synced 2026-03-27 09:58:31 +07:00
Update min Markdown version to 3.0.
This commit is contained in:
@@ -72,6 +72,7 @@ do, adding `--strict`, `--theme`, `--theme-dir`, and `--site-dir`.
|
||||
|
||||
### Other Changes and Additions to Version 1.1
|
||||
|
||||
* Update minimum dependancy to Markdown 3.0.1.
|
||||
* Updated minimum dependancy to Jinja 2.10.1 to address security
|
||||
concerns (#1780).
|
||||
* Add support for Python 3.8.
|
||||
|
||||
@@ -247,6 +247,6 @@ class _RelativePathExtension(Extension):
|
||||
self.file = file
|
||||
self.files = files
|
||||
|
||||
def extendMarkdown(self, md, md_globals):
|
||||
def extendMarkdown(self, md):
|
||||
relpath = _RelativePathTreeprocessor(self.file, self.files)
|
||||
md.treeprocessors.add("relpath", relpath, "_end")
|
||||
md.treeprocessors.register(relpath, "relpath", 0)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
click==3.3
|
||||
Jinja2==2.10.1
|
||||
livereload==2.5.1
|
||||
Markdown==2.5
|
||||
Markdown==3.0.1
|
||||
PyYAML==3.13
|
||||
tornado==4.1
|
||||
mdx_gh_links>=0.2
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
click>=7.0
|
||||
Jinja2>=2.10.3
|
||||
livereload>=2.6.1
|
||||
Markdown>=3.0.1
|
||||
Markdown>=3.1.1
|
||||
PyYAML>=5.2
|
||||
tornado>=5.1.1
|
||||
mdx_gh_links>=0.2
|
||||
|
||||
Reference in New Issue
Block a user