You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the word document (e.g. abstract or method) has a hyperlink, the EML will be invalid. The code could either remove the hyperlink from the word document or change into other format that EML accepts.
The text was updated successfully, but these errors were encountered:
I knew about this bug, and thought it has something to do with the EML::set_TextType function that we use under the hood. But that's not true according to this MRE:
library(EML)
person <- list(individualName = list(givenName = "Blizzard", surName = "Frosty"))
my_eml <- list(packageId = "id", system = "system",
dataset = list(
title = "A Mimimal Valid EML Dataset",
creator = person,
contact = person,
abstract = set_TextType("hyperlink_bug.docx")
))
eml_validate(my_eml)
If the word document (e.g. abstract or method) has a hyperlink, the EML will be invalid. The code could either remove the hyperlink from the word document or change into other format that EML accepts.
The text was updated successfully, but these errors were encountered: