From abc3c84876dee338d76258b3d412f2ec3595eca9 Mon Sep 17 00:00:00 2001 From: hshgogogo <2081920847@qq.com> Date: Sun, 22 Mar 2026 18:54:06 +0800 Subject: [PATCH] docs: add Azure Document Intelligence API-key example --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6da3ee1d9..0a4247e6f 100644 --- a/README.md +++ b/README.md @@ -174,6 +174,8 @@ markitdown path-to-file.pdf -o document.md -d -e "") +md = MarkItDown( + docintel_endpoint="", + docintel_credential=AzureKeyCredential(""), + docintel_file_types=["pdf"], +) result = md.convert("test.pdf") print(result.text_content) ```