docs: fix kwargs docstring (#25010)

Fix:
![Screenshot 2024-08-02 at 5 33 37
PM](https://github.com/user-attachments/assets/7c56cdeb-ee81-454c-b3eb-86aa8a9bdc8d)
This commit is contained in:
Bagatur
2024-08-02 19:54:54 -07:00
committed by GitHub
parent 57747892ce
commit e81ddb32a6
61 changed files with 143 additions and 143 deletions

View File

@@ -13,7 +13,7 @@ class MarkdownifyTransformer(BaseDocumentTransformer):
convert: A list of tags to convert. This option can't be used with the strip option.
autolinks: A boolean indicating whether the "automatic link" style should be used when a a tag's contents match its href. Defaults to True.
heading_style: Defines how headings should be converted. Accepted values are ATX, ATX_CLOSED, SETEXT, and UNDERLINED (which is an alias for SETEXT). Defaults to ATX.
**kwargs: Additional options to pass to markdownify.
kwargs: Additional options to pass to markdownify.
Example:
.. code-block:: python