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
As previously discussed in the thread, #439 (comment), revisit how the author's fullname is generated when completename is not provided.
fullname
completename
author_el.set('fullname', ('%s%s%s%s%s' % ( f"{name.prefix.content} " if name.prefix else '', f"{forenames} " if forenames else '', ' '.join(initials) if len(initials) > 0 else '', f"{name.surname.content} " if name.surname else '', f"{name.addition.content} " if name.addition else '', )).strip())
https://github.com/ietf-tools/bibxml-service/blob/main/xml2rfc_compat/serializers/authors.py#L159-L165
Note there is no space between initials and surname. It will only happen when initials exists.
initials
Determine if this behaviour is a bug.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the issue
As previously discussed in the thread, #439 (comment), revisit how the author's
fullname
is generated whencompletename
is not provided.https://github.com/ietf-tools/bibxml-service/blob/main/xml2rfc_compat/serializers/authors.py#L159-L165
Note there is no space between initials and surname. It will only happen when
initials
exists.Determine if this behaviour is a bug.
Code of Conduct
The text was updated successfully, but these errors were encountered: