from src.agent_tools.document_tools import _strip_pdf_editor_markers def test_pdf_ai_edit_derivative_strips_pdf_plumbing(): raw = """ # Contract - **Name:** Felix - Hello world """ assert _strip_pdf_editor_markers(raw) == "# Contract\n\n- **Name:** Felix\n- Hello world" def test_pdf_ai_edit_derivative_strips_form_source_marker(): raw = """ # Form """ assert _strip_pdf_editor_markers(raw) == "# Form"