We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_Entities.__contains__
1 parent 901c180 commit a7c3cf4Copy full SHA for a7c3cf4
markdown_it/common/entities.py
@@ -15,7 +15,7 @@ def __getitem__(self, name):
15
return DATA[name]
16
17
def __contains__(self, name):
18
- name in DATA
+ return name in DATA
19
20
21
entities = _Entities()
0 commit comments