Callback interface invoked for each resource URI during conversion when using CustomUriExportStrategy . Implement this interface to rewrite resource URIs in the Markdown output.
Example:
public class CdnUriHandler implements IUriSavingHandler {
@Override
public void handle(UriSavingArgs args) {
args.setResourceFileUri("https://cdn.example.com/" + args.getResourceFileName());
}
}