Fix docstring.

This commit is contained in:
Adam Fourney 2025-02-11 12:34:46 -08:00
parent f5767c7e46
commit 049b8f77f1
2 changed files with 1 additions and 1 deletions

View file

@ -111,6 +111,7 @@ class MarkItDown:
""" """
Enable and register built-in converters. Enable and register built-in converters.
Built-in converters are enabled by default. Built-in converters are enabled by default.
This method should only be called once, if built-ins were initially disabled.
""" """
if not self._builtins_enabled: if not self._builtins_enabled:
# TODO: Move these into converter constructors # TODO: Move these into converter constructors

View file

@ -37,7 +37,6 @@ class DocumentConverter:
We have tight control over the order of built-in converters, but We have tight control over the order of built-in converters, but
plugins can register converters in any order. A converter's priority plugins can register converters in any order. A converter's priority
field reasserts some control over the order of converters. field reasserts some control over the order of converters.
This method should only be called once, if built-ins were initially disabled.
Plugins can register converters with any priority, to appear before or Plugins can register converters with any priority, to appear before or
after the built-ins. For example, a plugin with priority 9 will run after the built-ins. For example, a plugin with priority 9 will run