File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ Convert some HTML to Markdown:
32
32
from markdownify import markdownify as md
33
33
md(' <b>Yay</b> <a href="http://github.com">GitHub</a>' ) # > '**Yay** [GitHub](http://github.com)'
34
34
35
- Specify tags to exclude (blacklist) :
35
+ Specify tags to exclude:
36
36
37
37
.. code :: python
38
38
39
39
from markdownify import markdownify as md
40
40
md(' <b>Yay</b> <a href="http://github.com">GitHub</a>' , strip = [' a' ]) # > '**Yay** GitHub'
41
41
42
- \. ..or specify the tags you want to include (whitelist) :
42
+ \. ..or specify the tags you want to include:
43
43
44
44
.. code :: python
45
45
@@ -53,11 +53,11 @@ Options
53
53
Markdownify supports the following options:
54
54
55
55
strip
56
- A list of tags to strip (blacklist) . This option can't be used with the
56
+ A list of tags to strip. This option can't be used with the
57
57
``convert `` option.
58
58
59
59
convert
60
- A list of tags to convert (whitelist) . This option can't be used with the
60
+ A list of tags to convert. This option can't be used with the
61
61
``strip `` option.
62
62
63
63
autolinks
You can’t perform that action at this time.
0 commit comments