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 custom_elements, it would be nice to have support for multiple instances of the same tag. EG: dc:creator allows for multiple instances of it in the XML (as does various items):
custom_elements
dc:creator
<dc:creator>Person 1</dc:creator> <dc:creator>Person 2</dc:creator>
But upon using an array to do so:
custom_elements: [ {"dc:creator": authors.map(author => author.name) }, ]
It only lists a single dc:creator XML element
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
custom_elements
, it would be nice to have support for multiple instances of the same tag. EG:dc:creator
allows for multiple instances of it in the XML (as does various items):But upon using an array to do so:
It only lists a single
dc:creator
XML elementThe text was updated successfully, but these errors were encountered: