We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739b86c commit 58cc956Copy full SHA for 58cc956
docs/generate_html_pages.py
@@ -108,7 +108,7 @@ def get_doc_links():
108
from urllib.request import urlopen
109
110
html = urlopen(tadoc_homepage).read()
111
- with open(html_file_path, 'w') as f:
+ with open(html_file_path, 'wb') as f:
112
f.write(html)
113
114
# find every link that's for an indicator and convert to absolute urls
@@ -227,6 +227,7 @@ def run_convert_to_html(output_dir):
227
for md_file_path in get_markdown_file_paths():
228
with open(md_file_path, 'r') as f:
229
html = markdown_to_html(f.read())
230
+ html = html.replace('.md">', '.html">')
231
232
head = HEADER
233
if 'func_groups' in md_file_path:
0 commit comments