From 9d0b839b738d7c015a2ced6513ca5c6ae636cfa8 Mon Sep 17 00:00:00 2001 From: AlexVonB Date: Sun, 23 Jan 2022 10:59:24 +0100 Subject: [PATCH] wording --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 9a06912..4d6db8e 100644 --- a/README.rst +++ b/README.rst @@ -32,14 +32,14 @@ Convert some HTML to Markdown: from markdownify import markdownify as md md('Yay GitHub') # > '**Yay** [GitHub](http://github.com)' -Specify tags to exclude (blacklist): +Specify tags to exclude: .. code:: python from markdownify import markdownify as md md('Yay GitHub', strip=['a']) # > '**Yay** GitHub' -\...or specify the tags you want to include (whitelist): +\...or specify the tags you want to include: .. code:: python @@ -53,11 +53,11 @@ Options Markdownify supports the following options: strip - A list of tags to strip (blacklist). This option can't be used with the + A list of tags to strip. This option can't be used with the ``convert`` option. convert - A list of tags to convert (whitelist). This option can't be used with the + A list of tags to convert. This option can't be used with the ``strip`` option. autolinks