Skip to content

Commit e4f1cc9

Browse files
Merge pull request #87 from faangbait/pdf-standards
[MINOR] Update PDF Standards to match typst upstream
2 parents 9f6f27b + 0028bab commit e4f1cc9

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

src/django_typst/config.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,23 @@
77

88

99
class PdfStandard(enum.Enum):
10+
PDF_1_4 = "1.4"
11+
PDF_1_5 = "1.5"
12+
PDF_1_6 = "1.6"
1013
PDF_1_7 = "1.7"
14+
PDF_2_0 = "2.0"
15+
PDF_A_1A = "a-1a"
16+
PDF_A_1B = "a-1b"
17+
PDF_A_2A = "a-2a"
1118
PDF_A_2B = "a-2b"
19+
PDF_A_2U = "a-2u"
20+
PDF_A_3A = "a-3a"
1221
PDF_A_3B = "a-3b"
22+
PDF_A_3U = "a-3u"
23+
PDF_A_4 = "a-4"
24+
PDF_A_4E = "a-4e"
25+
PDF_A_4F = "a-4f"
26+
PDF_UA_1 = "ua-1"
1327

1428

1529
@dataclasses.dataclass

0 commit comments

Comments
 (0)