Skip to content

Commit

Permalink
Merge pull request #309 from Swiftb0y/fix/jinja-markup
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
ronso0 authored Jan 26, 2024
2 parents aa81906 + fada728 commit e1b7ca2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
3 changes: 2 additions & 1 deletion pelicanconf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
import jinja2
import markupsafe
import markdown

AUTHOR = "Mixxx DJ Team"
Expand Down Expand Up @@ -276,7 +277,7 @@ def __init__(self, url, title, context, css="", children=()):
"jinja2.ext.i18n",
],
}
JINJA_FILTERS = {"markdown": lambda text: jinja2.Markup(md.convert(text))}
JINJA_FILTERS = {"markdown": lambda text: markupsafe.Markup(md.convert(text))}

# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
Expand Down
24 changes: 12 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
blinker==1.4
colorama==0.4.4
blinker==1.7.0
colorama==0.4.6
commonmark==0.9.1
docutils==0.18.1
feedgenerator==2.0.0
Jinja2==3.0.3
Markdown==3.3.6
docutils==0.20.1
feedgenerator==2.1.0
Jinja2==3.1.3
Markdown==3.5.2
markdown-full-yaml-metadata @ git+https://github.com/Holzhaus/python-markdown-full-yaml-metadata@9af69835fa1ca154776a788666280a7019c6c636
Markdown-Video @ git+https://github.com/Holzhaus/Python-Markdown-Video@20b57db7398e02cebcaeb0c202bebc79fc8d692b
MarkupSafe==2.1.0
pelican==4.7.2
Pygments==2.15.0
MarkupSafe==2.1.3
pelican==4.9.1
Pygments==2.17.2
python-dateutil==2.8.2
pytz==2021.3
pytz==2023.3.post1
PyYAML==5.4.1
rich==11.2.0
rich==13.7.0
six==1.16.0
Unidecode==1.3.3
Unidecode==1.3.8

0 comments on commit e1b7ca2

Please sign in to comment.