-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter4-T-D.qmd
285 lines (229 loc) · 8.29 KB
/
chapter4-T-D.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
---
title: "T-D"
---
This is the edition for Paris, BnF Français 19525.
```{r setup, include=FALSE}
# Load the xml2 package
library(xml2)
```
::: {.column-body-outset}
::: {layout="[[6,6,6]]"}
::: {.column}
## Minimal
```{r results='asis'}
# Read the XML content
xml_file <- read_xml("data/T-D.xml")
# Extract both <l>, <cb>, and <pb> elements
lines <- xml_find_all(xml_file, "//text//l | //text//cb | //text//pb")
# Initialize an empty list to store the processed lines
processed_lines <- list()
# Initialize line counter
line_count <- 0
# Function to process each element
process_line <- function(line) {
# Handle page breaks differently
if (xml_name(line) == "pb") {
# Get folio number and format as standalone line
folio_num <- xml_attr(line, "n")
return(sprintf("<div class='folio-number'>%s</div>", folio_num))
}
# Only increment line count for verse lines
if (xml_name(line) == "l") {
line_count <<- line_count + 1
# Add line number div every 5th line
line_number <- if (line_count %% 5 == 0) {
sprintf("<div class='line-number'>%d</div>", line_count)
} else {
""
}
} else {
line_number <- ""
}
# Find all <choice> elements within the line
choices <- xml_find_all(line, ".//choice")
for (choice in choices) {
# Extract the text from the <orig> tag
orig_text <- xml_text(xml_find_first(choice, ".//orig"))
# Remove the <choice> element and replace it with the text from the <orig> tag
xml_set_text(choice, orig_text)
}
# Now we want to remove any <reg> elements entirely
reg_elements <- xml_find_all(line, ".//reg")
xml_remove(reg_elements)
# Replace <lb/> tags with HTML line break
lb_elements <- xml_find_all(line, ".//lb")
for (lb in lb_elements) {
xml_set_text(lb, "")
}
# Get the text of the line and wrap in a div with line-height control
line_text <- sprintf("<div style='line-height: 1.2;'>%s</div>", as.character(line))
# Return line with number if applicable
line_text <- sprintf("<div style='line-height: 1.2;'>%s%s</div>",
line_number, as.character(line))
# Return the processed text of the line
return(line_text)
}
# Process each line and wrap with <div class='column-break'> at each <cb/>
for (line in lines) {
if (xml_name(line) == "cb") {
# Add a closing </div> for the previous column and an opening <div> for the new column
processed_lines <- c(processed_lines, "</div>", "<div class='column-break'>")
} else {
# Process the line and add it to the current column
processed_lines <- c(processed_lines, process_line(line))
}
}
# Process lines and wrap in edition-text div
formatted_text <- paste(c("<div class='edition-text'>", processed_lines, "</div>"), collapse = "\n")
cat(formatted_text)
```
:::
::: {.column}
## Intermediate
```{r results='asis'}
# Read the XML content
xml_file <- read_xml("data/T-D.xml")
# Extract the <l>, <cb>, and <pb> elements inside the <text> element
lines <- xml_find_all(xml_file, "//text//l | //text//cb | //text//pb")
# Initialize an empty list to store the processed lines
processed_lines <- list()
# Initialize line counter
line_count <- 0
# Function to process each element
process_line <- function(line) {
# Handle page breaks differently
if (xml_name(line) == "pb") {
# Get folio number and format as standalone line
folio_num <- xml_attr(line, "n")
return(sprintf("<div class='folio-number'>%s</div>", folio_num))
}
# Only increment line count for verse lines
if (xml_name(line) == "l") {
line_count <<- line_count + 1
# Add line number div every 5th line
line_number <- if (line_count %% 5 == 0) {
sprintf("<div class='line-number'>%d</div>", line_count)
} else {
""
}
} else {
line_number <- ""
}
# Find all <choice> elements within the line
choices <- xml_find_all(line, ".//choice")
for (choice in choices) {
# Check if the <choice> element contains <abbr> and <expan>
abbr_exists <- xml_find_first(choice, ".//abbr")
expan_exists <- xml_find_first(choice, ".//expan")
if (!is.na(abbr_exists) && !is.na(expan_exists)) {
# If <abbr> and <expan> tags exist, extract only the <reg> text from <expan>
reg_text <- xml_text(xml_find_first(choice, ".//expan/reg"))
xml_set_text(choice, reg_text)
} else {
# For non-abbreviation choices, keep original behavior
orig_text <- xml_text(xml_find_first(choice, ".//orig"))
xml_set_text(choice, orig_text)
}
}
# Now we want to remove any <reg> elements entirely
reg_elements <- xml_find_all(line, ".//reg")
xml_remove(reg_elements)
# Replace <lb/> tags with HTML line break
lb_elements <- xml_find_all(line, ".//lb")
for (lb in lb_elements) {
xml_set_text(lb, "")
}
# Get the text of the line and wrap in a div with line-height control
line_text <- sprintf("<div style='line-height: 1.2;'>%s</div>", as.character(line))
# Return line with number if applicable
line_text <- sprintf("<div style='line-height: 1.2;'>%s%s</div>",
line_number, as.character(line))
# Return the processed text of the line
return(line_text)
}
# Process each line and wrap with <div class='column-break'> at each <cb/>
for (line in lines) {
if (xml_name(line) == "cb") {
# Add a closing </div> for the previous column and an opening <div> for the new column
processed_lines <- c(processed_lines, "</div>", "<div class='column-break'>")
} else {
# Process the line and add it to the current column
processed_lines <- c(processed_lines, process_line(line))
}
}
# Process lines and wrap in edition-text div
formatted_text <- paste(c("<div class='edition-text'>", processed_lines, "</div>"), collapse = "\n")
cat(formatted_text)
```
:::
::: {.column}
## Extensive
```{r results='asis'}
# Read the XML content
xml_file <- read_xml("data/T-D.xml")
# Extract the <l>, <cb>, and <pb> elements inside the <text> element
lines <- xml_find_all(xml_file, "//text//l | //text//cb | //text//pb")
# Initialize an empty list to store the processed lines
processed_lines <- list()
# Initialize line counter
line_count <- 0
# Function to process each element
process_line <- function(line) {
# Handle page breaks differently
if (xml_name(line) == "pb") {
# Get folio number and format as standalone line
folio_num <- xml_attr(line, "n")
return(sprintf("<div class='folio-number'>%s</div>", folio_num))
}
# Only increment line count for verse lines
if (xml_name(line) == "l") {
line_count <<- line_count + 1
# Add line number div every 5th line
line_number <- if (line_count %% 5 == 0) {
sprintf("<div class='line-number'>%d</div>", line_count)
} else {
""
}
} else {
line_number <- ""
}
# Find all <choice> elements within the line
choices <- xml_find_all(line, ".//choice")
for (choice in choices) {
# Extract the text from the <reg> tag
reg_text <- xml_text(xml_find_first(choice, ".//reg"))
# Replace the <choice> element with the text from the <reg> tag
xml_set_text(choice, reg_text)
}
# Now we want to remove any <orig> elements entirely
orig_elements <- xml_find_all(line, ".//orig")
xml_remove(orig_elements)
# Replace <lb/> tags with HTML line break
lb_elements <- xml_find_all(line, ".//lb")
for (lb in lb_elements) {
xml_set_text(lb, "")
}
# Get the text of the line and wrap in a div with line-height control
line_text <- sprintf("<div style='line-height: 1.2;'>%s</div>", as.character(line))
# Return line with number if applicable
line_text <- sprintf("<div style='line-height: 1.2;'>%s%s</div>",
line_number, as.character(line))
# Return the processed text of the line
return(line_text)
}
# Process each line and wrap with <div class='column-break'> at each <cb/>
for (line in lines) {
if (xml_name(line) == "cb") {
# Add a closing </div> for the previous column and an opening <div> for the new column
processed_lines <- c(processed_lines, "</div>", "<div class='column-break'>")
} else {
# Process the line and add it to the current column
processed_lines <- c(processed_lines, process_line(line))
}
}
# Process lines and wrap in edition-text div
formatted_text <- paste(c("<div class='edition-text'>", processed_lines, "</div>"), collapse = "\n")
cat(formatted_text)
```
:::
::: :::