From 8ea1433a287289d3e3d81e1b60ebd215279c7002 Mon Sep 17 00:00:00 2001 From: uvok Date: Sun, 22 Jun 2025 15:57:44 +0200 Subject: Extract function to do link conversion --- converters/links_to_gemini.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'converters/links_to_gemini.py') diff --git a/converters/links_to_gemini.py b/converters/links_to_gemini.py index 9b3749d..8e401da 100644 --- a/converters/links_to_gemini.py +++ b/converters/links_to_gemini.py @@ -3,15 +3,18 @@ from os import walk import os.path def convert_links_to_gemini(domain): - for file in os.listdir("output/gemini"): + convert_file_links(file) + return("links are converted to gemini (3/3)") + +def convert_file_links(file): processed = "" f = open("output/gemini/" + file, "r") for line in f.readlines(): - if ".html" in line and "http" not in line or domain in line: + if ".html" in line and "http" not in line: # or domain in line: line = line.replace("html", "gmi") url = line.split(" ")[1] - + link = url.split("/")[-1] line = line.replace(str(url), str(link)) @@ -25,4 +28,3 @@ def convert_links_to_gemini(domain): f.write(processed) f.close() - return("links are converted to gemini (3/3)") -- cgit v1.2.3