Skip to content

Commit 71bca19

Browse files
committed
change manual encoding to UTF
1 parent c831f9b commit 71bca19

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

assembler/manual.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<html> <head> <title>SPAdes 3.13.1 Manual</title> <style type="text/css"> .highlight pre { background-color: #f0f2f4; border-radius: 2px; font-size: 100%; line-height: 1.45; overflow: auto; padding: 16px; } </style> </head> <body><p><strong>SPAdes 3.14.0 Manual</strong></p>
1+
<html> <head> <title>SPAdes manual</title> <style type="text/css"> .highlight pre { background-color: #f0f2f4; border-radius: 2px; font-size: 100%; line-height: 1.45; overflow: auto; padding: 16px; } </style> </head> <body> <meta charset="UTF-8"> <p><strong>SPAdes 3.14.0 Manual</strong></p>
22
<ol>
33
<li><a href="#sec1">About SPAdes</a> <br>
44
    1.1. <a href="#sec1.1">Supported data types</a><br>
@@ -812,4 +812,4 @@ <h1>Citation</h1>
812812
<p><a name="sec6"></a></p>
813813
<h1>Feedback and bug reports</h1>
814814
<p>Your comments, bug reports, and suggestions are very welcomed. They will help us to further improve SPAdes. If you have any troubles running SPAdes, please send us <code>params.txt</code> and <code>spades.log</code> from the directory <code>&lt;output_dir&gt;</code>.</p>
815-
<p>You can leave your comments and bug reports at <a href="https://github.com/ablab/spades/issues">our GitHub repository tracker</a> or sent it via e-mail: <a href="mailto:spades.support@cab.spbu.ru">spades.support@cab.spbu.ru</a>.</p><br/><br/><br/><br/><br/> </body> </html>
815+
<p>You can leave your comments and bug reports at <a href="https://github.com/ablab/spades/issues">our GitHub repository tracker</a> or sent it via e-mail: <a href="mailto:spades.support@cab.spbu.ru">spades.support@cab.spbu.ru</a>.</p><br/><br/><br/><br/><br/> </body> </html>

assembler/src/tools/misc/markdown_to_github_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def make_github_request(in_file_name):
4343

4444
# Substitute conversion artifacts and dump to file (non-ascii)
4545
def write_html_to_file(txt, out_file_name):
46-
final_html = HEADER + txt.replace("<br><br>", "<br>").replace('<a name="user-content-', '<a name="').replace('<a href="assembler/', '<a href="') + FOOTER
46+
final_html = HEADER + txt.replace("<br><br>", "<br>").replace('<a name="user-content-', '<a name="').replace('<a href="assembler/', '<a href="').replace('<p><strong>SPAdes', ' <meta charset="UTF-8"> <p><strong>SPAdes') + FOOTER
4747
outf = codecs.open(sys.argv[2], 'w', encoding='utf-8')
4848
outf.write(final_html)
4949
outf.close()

0 commit comments

Comments
 (0)