Skip to content

Commit 9d0b839

Browse files
committed
wording
1 parent d3eff11 commit 9d0b839

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ Convert some HTML to Markdown:
3232
from markdownify import markdownify as md
3333
md('<b>Yay</b> <a href="http://github.com">GitHub</a>') # > '**Yay** [GitHub](http://github.com)'
3434
35-
Specify tags to exclude (blacklist):
35+
Specify tags to exclude:
3636

3737
.. code:: python
3838
3939
from markdownify import markdownify as md
4040
md('<b>Yay</b> <a href="http://github.com">GitHub</a>', strip=['a']) # > '**Yay** GitHub'
4141
42-
\...or specify the tags you want to include (whitelist):
42+
\...or specify the tags you want to include:
4343

4444
.. code:: python
4545
@@ -53,11 +53,11 @@ Options
5353
Markdownify supports the following options:
5454

5555
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
5757
``convert`` option.
5858

5959
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
6161
``strip`` option.
6262

6363
autolinks

0 commit comments

Comments
 (0)