resolve DOI entries using https

Issue #83 resolved
Bruce Ravel created an issue

In format_doi in style/formatting/unsrt.py it would be nice to make the following edit so that DOI entries resolve to https URLs, as suggested by the DOI System.

    def format_doi(self, e):
        # based on urlbst format.doi
        return href [
            join [
                'https://doi.org/',
                field('doi')
                ],
            join [
                'doi:',
                field('doi')
                ]
            ]

Comments (4)

  1. Log in to comment