Skip to content
Snippets Groups Projects
Commit fb580ba2 authored by Jutta Schnabel's avatar Jutta Schnabel
Browse files

fix links

parent ec940e93
No related branches found
No related tags found
No related merge requests found
Pipeline #14743 passed
...@@ -6,7 +6,7 @@ def adapt_file(filename): ...@@ -6,7 +6,7 @@ def adapt_file(filename):
inline = f.readline() inline = f.readline()
while inline: while inline:
if inline.find("pages/")>-1 and inline.find(".md")>-1: if inline.find("pages/")>-1 and inline.find(".md")>-1:
inline.replace(".md", ".html") inline = inline.replace(".md", ".html")
newversion += inline newversion += inline
inline = f.readline() inline = f.readline()
with open(filename, "w") as f: with open(filename, "w") as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment