diff --git a/docling/backend/html_backend.py b/docling/backend/html_backend.py index 0434138a..3164a8f6 100644 --- a/docling/backend/html_backend.py +++ b/docling/backend/html_backend.py @@ -136,8 +136,6 @@ class HTMLDocumentBackend(DeclarativeDocumentBackend): def get_direct_text(self, item): """Get the direct text of the
  • element (ignoring nested lists).""" text = item.find(string=True, recursive=False) - print(text) - if isinstance(text, str): return text.strip()