Details
-
Type:
Bug
-
Status:
Closed
(View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Labels:None
Description
The following line
\d \tl Beatus vir, qui non abiit, &c.\tl*
became
<title type="psalm"><hi type="italic">Beatus vir, qui non abiit, &c.</hi></title>
and the XML validation fails because the "&c." was not processed.
David, the change is simple.
Just add the following at the top of the main loop:
s/&/&/go;
or you can do the following on the file before running osis2osis.pl
perl -p -i.orig -e 's/&/&/go;' filename
This will do the expansion for you, editing your input file and backing it up to filename.orig.