mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-27 02:44:28 +00:00

Reviewers: I recommend reviewing commit-by-commit or just looking at the final version of `partition/docx.py` as View File. This refactor solves a few problems but mostly lays the groundwork to allow us to refine further aspects such as page-break detection, list-item detection, and moving python-docx internals upstream to that library so our work doesn't depend on that domain-knowledge.
12 lines
218 B
Python
12 lines
218 B
Python
import enum
|
|
|
|
class WD_SECTION_START(enum.Enum):
|
|
CONTINUOUS: enum.Enum
|
|
EVEN_PAGE: enum.Enum
|
|
NEW_COLUMN: enum.Enum
|
|
NEW_PAGE: enum.Enum
|
|
ODD_PAGE: enum.Enum
|
|
|
|
# -- alias --
|
|
WD_SECTION = WD_SECTION_START
|