Skip to content

Commit aa3d688

Browse files
committed
Merge branch '2.10.x' into 2.11.x
2 parents cf21539 + 7c3b7ca commit aa3d688

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

.readthedocs.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
build:
3+
os: ubuntu-20.04
4+
tools:
5+
python: "3.9"
6+
python:
7+
install:
8+
- requirements: docs/requirements.txt
9+
- method: pip
10+
path: .
11+
- requirements: docs/requirements-post.txt
12+
sphinx:
13+
builder: dirhtml
14+
fail_on_warning: false

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ means that you will less likely have an XSS problem it also causes a huge
9595
amount of extra processing in the template engine which can cause serious
9696
performance problems. As Python doesn't provide a way to mark strings as
9797
unsafe Jinja has to hack around that limitation by providing a custom
98-
string class (the :class:`Markup` string) that safely interacts with safe
98+
string class (the :class:`~markupsafe.Markup` string) that safely interacts with safe
9999
and unsafe strings.
100100

101101
With explicit escaping however the template engine doesn't have to perform

docs/requirements-post.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
markupsafe<2

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Sphinx~=2.1.2
22
Pallets-Sphinx-Themes~=1.2.0
33
sphinxcontrib-log-cabinet~=1.0.1
44
sphinx-issues~=1.2.0
5+
markupsafe<2

0 commit comments

Comments
 (0)