Files
@ 19d93bd709bf
Branch filter:
Location: kallithea/docs/index.rst
19d93bd709bf
1.2 KiB
text/prs.fallenstein.rst
html: put 'use strict' on separate lines
use.py:
import re
import sys
for fn in sys.argv[1:]:
with open(fn) as f:
s = f.read()
s = re.sub(r'''(<script>)('use strict';)\n( *)''', r'''\1\n\3\2\n\3''', s)
with open(fn, 'w') as f:
f.write(s)
python use.py $(hg loc 'kallithea/templates/**.html')
use.py:
import re
import sys
for fn in sys.argv[1:]:
with open(fn) as f:
s = f.read()
s = re.sub(r'''(<script>)('use strict';)\n( *)''', r'''\1\n\3\2\n\3''', s)
with open(fn, 'w') as f:
f.write(s)
python use.py $(hg loc 'kallithea/templates/**.html')