From 5ccc7418dc9d547febdc3cd139fcf213c40f159a Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Thu, 7 Oct 2021 14:59:00 +0000 Subject: [PATCH] tilde.wiki is the tildeverse wiki now --- create_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_index.py b/create_index.py index 34cfa86..14bf965 100644 --- a/create_index.py +++ b/create_index.py @@ -25,7 +25,7 @@ pages = os.listdir("/var/www/tilde.team/wiki/pages") for page in pages: with open(os.path.join("/var/www/tilde.team/wiki/pages",page)) as f: post = frontmatter.load(f) - url = "https://tilde.wiki/"+os.path.splitext(page)[0] + url = "https://tilde.team/wiki/"+os.path.splitext(page)[0] title = post["title"] text = textify(post.content) writer.add_document(title=title, text=text, url=url)