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

Update make_documents.py

parent fb580ba2
No related branches found
Tags v0.14.5
No related merge requests found
Pipeline #14744 passed
...@@ -5,7 +5,7 @@ def adapt_file(filename): ...@@ -5,7 +5,7 @@ def adapt_file(filename):
with open(filename, "r") as f: with open(filename, "r") as f:
inline = f.readline() inline = f.readline()
while inline: while inline:
if inline.find("pages/")>-1 and inline.find(".md")>-1: if inline.find(".md")>-1:
inline = inline.replace(".md", ".html") inline = inline.replace(".md", ".html")
newversion += inline newversion += inline
inline = f.readline() inline = f.readline()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment