-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexcludable_elements.go
More file actions
21 lines (19 loc) · 1.08 KB
/
excludable_elements.go
File metadata and controls
21 lines (19 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package unstructured
// ExcludeableElement represents elements that can be excluded during document processing.
type ExcludeableElement string
// Excludeable element constants for document processing.
const (
ExcludableElementFigureCaption ExcludeableElement = "FigureCaption"
ExcludableElementNarrativeText ExcludeableElement = "NarrativeText"
ExcludableElementListItem ExcludeableElement = "ListItem"
ExcludableElementTitle ExcludeableElement = "Title"
ExcludableElementAddress ExcludeableElement = "Address"
ExcludableElementTable ExcludeableElement = "Table"
ExcludableElementPageBreak ExcludeableElement = "PageBreak"
ExcludableElementHeader ExcludeableElement = "Header"
ExcludableElementFooter ExcludeableElement = "Footer"
ExcludableElementUncategorizedText ExcludeableElement = "UncategorizedText"
ExcludableElementImage ExcludeableElement = "Image"
ExcludableElementFormula ExcludeableElement = "Formula"
ExcludableElementEmailAddress ExcludeableElement = "EmailAddress"
)