chore: rm comment
This commit is contained in:
parent
8baa377c19
commit
3fca8fa020
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,6 @@ def generate_tag_file(target_dir):
|
||||||
print(colored("INFO Creating tag file...", "light_blue"))
|
print(colored("INFO Creating tag file...", "light_blue"))
|
||||||
tag_file = f"{target_dir}/tags.md"
|
tag_file = f"{target_dir}/tags.md"
|
||||||
tag_index = invoke_eolas_db()
|
tag_index = invoke_eolas_db()
|
||||||
print(tag_index["time"])
|
|
||||||
with open(tag_file, "a") as file:
|
with open(tag_file, "a") as file:
|
||||||
for tag in tag_index:
|
for tag in tag_index:
|
||||||
file.write(f"[{tag}](./tags#{tag}), ")
|
file.write(f"[{tag}](./tags#{tag}), ")
|
||||||
|
@ -27,6 +26,8 @@ def generate_tag_file(target_dir):
|
||||||
file.write(f"### {tag} \n\n")
|
file.write(f"### {tag} \n\n")
|
||||||
for entry in tag_index[tag]:
|
for entry in tag_index[tag]:
|
||||||
file.write(f"- [[{entry}]] \n")
|
file.write(f"- [[{entry}]] \n")
|
||||||
|
|
||||||
|
print(colored("SUCCESS Tag file created", "light_green"))
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(
|
print(
|
||||||
colored(
|
colored(
|
||||||
|
|
Loading…
Add table
Reference in a new issue