feat: page break placeholder in markdown exports options (#194)

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi
2025-05-23 09:26:27 -04:00
committed by GitHub
parent de002dfcdc
commit 32b8a809f3
4 changed files with 84 additions and 65 deletions

View File

@@ -296,6 +296,14 @@ class ConvertDocumentsOptions(BaseModel):
),
] = 2.0
md_page_break_placeholder: Annotated[
str,
Field(
description="Add this placeholder betweek pages in the markdown output.",
examples=["<!-- page-break -->", ""],
),
] = ""
do_code_enrichment: Annotated[
bool,
Field(