2024-08-25 22:52:09 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
2024-08-26 09:12:25 -05:00
|
|
|
# TODO: rewrite in bash
|
|
|
|
|
2024-08-25 22:52:09 -05:00
|
|
|
# add title attribute to img tags
|
|
|
|
filename = sys.argv[1]
|
|
|
|
with open(filename, 'r+') as f:
|
|
|
|
contents = ''.join(f.readlines())
|
|
|
|
regexp = re.compile('alt="(.*?)"')
|
|
|
|
for match in regexp.finditer(contents):
|
|
|
|
contents = contents.replace(match.group(0), f'title="{match.group(1)}" {match.group(0)}')
|
|
|
|
|
|
|
|
with open(filename, 'wt') as f:
|
|
|
|
f.write(contents)
|