convert_async method
Leave feedback
On this page
Asynchronously converts the loaded document to Markdown and returns the result as a string.
def convert_async(self):
...
Returns: str: The converted Markdown content.
Asynchronously converts the loaded document to Markdown with the specified options.
def convert_async(self, convert_options):
...
| Parameter | Type | Description |
|---|---|---|
| convert_options | ConvertOptions |
Options that control the conversion. |
Asynchronously converts the loaded document and saves the result to a file.
def convert_async(self, output_file_path, convert_options):
...
| Parameter | Type | Description |
|---|---|---|
| output_file_path | str |
The path where the Markdown file will be written. |
| convert_options | ConvertOptions |
Options that control the conversion. Pass None for defaults. |
- class
MarkdownConverter
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.