Skip to content

Commit

Permalink
correct <title> coordinates attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Dec 20, 2023
1 parent 6bd974d commit e769a52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public StringBuilder toTEIHeader(BiblioItem biblio,
if (titleTokens != null && titleTokens.size()>0) {
String coords = LayoutTokensUtil.getCoordsString(titleTokens);
if (coords != null) {
tei.append(" coord=\"" + coords + "\"");
tei.append(" coords=\"" + coords + "\"");
}
}
}
Expand Down Expand Up @@ -394,7 +394,7 @@ else if (biblio.getE_Year().length() == 4)
if (titleTokens != null && titleTokens.size()>0) {
String coords = LayoutTokensUtil.getCoordsString(titleTokens);
if (coords != null) {
tei.append(" coord=\"" + coords + "\"");
tei.append(" coords=\"" + coords + "\"");
}
}
}
Expand Down

0 comments on commit e769a52

Please sign in to comment.