mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
named conversions.
This commit is contained in:
parent
3b6e8b5e87
commit
3921233762
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ link="#FF0000">
|
||||||
'''
|
'''
|
||||||
rules_footer = '''
|
rules_footer = '''
|
||||||
<p>
|
<p>
|
||||||
%s
|
%(footer)s
|
||||||
<br>
|
<br>
|
||||||
<a href="../glossary.html">Glossary</a>
|
<a href="../glossary.html">Glossary</a>
|
||||||
<br>
|
<br>
|
||||||
|
@ -243,7 +243,7 @@ def gen_rules_html():
|
||||||
print(wikipedia_header % title, file=outfile)
|
print(wikipedia_header % title, file=outfile)
|
||||||
with open(os.path.join(dir, filename), 'r', encoding='utf-8') as file:
|
with open(os.path.join(dir, filename), 'r', encoding='utf-8') as file:
|
||||||
print(file.read(), file=outfile)
|
print(file.read(), file=outfile)
|
||||||
print(rules_footer % footer, file=outfile)
|
print(rules_footer % {'footer': footer}, file=outfile)
|
||||||
outfile.close()
|
outfile.close()
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue