We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the NlmXmlReader class
def detect(self, fstring, fname=None): """""" if fname and not (fname.endswith('.xml') or fname.endswith('.nxml')): return False if b'xmlns="http://jats.nlm.nih.gov/ns/archiving' in fstring: return True if b'JATS-archivearticle1.dtd' in fstring: return True if b'-//NLM//DTD JATS' in fstring: return True return False
The NLM's JATS namespace URI uses https now, so my document wasn't being registered as compatible with NlmXmlReader
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the NlmXmlReader class
The NLM's JATS namespace URI uses https now, so my document wasn't being registered as compatible with NlmXmlReader
The text was updated successfully, but these errors were encountered: