Update the mkdocs prepare tool

This commit is contained in:
Michael Mintz 2020-05-12 15:55:03 -04:00
parent ebbf0520d9
commit a0c794654e
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def main(*args, **kwargs):
for line in code_lines:
if ' href="' in line and '.md"' in line:
changed = True
line = line.replace('.md"', '.html"')
line = line.replace('.md"', '/"')
seleniumbase_lines.append(line)
if changed:
out_file = codecs.open(readme_file, "w+", encoding='utf-8')