Merge pull request #494 from BrianArbuckle/issue493

Refactored save.py
This commit is contained in:
Daniel Miessler 2024-06-01 15:34:39 -07:00 committed by GitHub
commit 52a39efa8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -52,14 +52,11 @@ def main(tag, tags, silent, fabric):
# YAML frontmatter stubs for things like Obsidian
# Prevent a NoneType ending up in the tags
frontmatter_tags = ""
if fabric:
frontmatter_tags = os.getenv(FM_KEY) or ""
frontmatter_tags = os.getenv(FM_KEY) or "" if fabric else ""
with open(target, "w") as fp:
if frontmatter_tags or len(tags) != 0:
fp.write("---\n")
now = datetime.now().strftime(f"%Y-%m-%d %H:%M")
now = datetime.now().strftime("%Y-%m-%d %H:%M")
fp.write(f"generation_date: {now}\n")
fp.write(f"tags: {frontmatter_tags} {tag} {' '.join(tags)}\n")
fp.write("---\n")