# def __fix_doi_typing_errors__(self, string):
# """This fixes common typing errors that we found"""
# # From https://s3.documentcloud.org/documents/23782225/mwg-fdr-document-04-16-23-1.pdf page 298
# if "https://doi.org:" in string:
# self.urls_fixed.append("https://doi.org:")
# string = string.replace("https://doi.org:", "https://doi.org/")
# # From https://s3.documentcloud.org/documents/23782225/mwg-fdr-document-04-16-23-1.pdf page 298
# if "https://doi.or/" in string:
# self.urls_fixed.append("https://doi.or/")
# string = string.replace("https://doi.or/", "https://doi.org/")
# return string