image_saving_callback property

image_saving_callback property

The callback invoked once per image while saving Markdown. Allows the caller to persist images externally and substitute the URI embedded in the document. Takes precedence over MarkdownOptions.export_images_as_base64 when not None.

Definition:

@property
def image_saving_callback(self):
    ...
@image_saving_callback.setter
def image_saving_callback(self, value):
    ...

See Also