This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Keys | |
*.key | |
*.pub | |
# OSX file system junk | |
.DS_Store | |
# Python cache, bytecode, and other | |
__pycache__ | |
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Sometimes you want to make several different replacements. Search by tag with | |
optional attributes. Replace with tag with optional attributes. | |
Thank you to Dan @ University of Exeter for bug fix | |
""" | |
from bs4 import BeautifulSoup | |
REPLACEMENTS = [('b', {}, 'strong', {}), |