File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -731,9 +731,11 @@ class ProvenanceItem(BaseModel):
731731class ContentLayer (str , Enum ):
732732 """ContentLayer."""
733733
734- BODY = "body"
735- FURNITURE = "furniture"
736- BACKGROUND = "background"
734+ BODY = "body" # main content of the document
735+ FURNITURE = "furniture" # eg page-headers/footers
736+ BACKGROUND = "background" # eg watermarks
737+ INVISIBLE = "invisible" # hidden or invisible text
738+ NOTES = "notes" # author/speaker notes, corrections, etc
737739
738740
739741DEFAULT_CONTENT_LAYERS = {ContentLayer .BODY }
Original file line number Diff line number Diff line change 362362 "enum" : [
363363 " body" ,
364364 " furniture" ,
365- " background"
365+ " background" ,
366+ " invisible" ,
367+ " notes"
366368 ],
367369 "title" : " ContentLayer" ,
368370 "type" : " string"
You can’t perform that action at this time.
0 commit comments