From b0fc1e7189bf665395a5fc9509b82d906b7378d5 Mon Sep 17 00:00:00 2001 From: Peter Staar Date: Wed, 4 Dec 2024 16:20:17 +0100 Subject: [PATCH] added html to cli Signed-off-by: Peter Staar --- docling/datamodel/base_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docling/datamodel/base_models.py b/docling/datamodel/base_models.py index 55a19ac3..b71c0f97 100644 --- a/docling/datamodel/base_models.py +++ b/docling/datamodel/base_models.py @@ -41,6 +41,7 @@ class InputFormat(str, Enum): class OutputFormat(str, Enum): MARKDOWN = "md" JSON = "json" + HTML = "html" TEXT = "text" DOCTAGS = "doctags"