erick.is/_draft.py
Erick Ruiz de Chavez 40121b1c49 Refactor site content and worflow
Since the site is now Gemini first, it doesn't make sense to use Markdown. In this commit I am refactoring the site generator to remove lowdown and frontmatter dependencies.
2025-01-08 05:38:01 -05:00

10 lines
268 B
Python

from slugify import slugify
import _utils
title = input("Enter draft's title: ")
slug = slugify(title)
fm = _utils.loads("---\n---\n")
fm.metadata["title"] = title
with open(f"_drafts/{slug}.gmi", mode="w", encoding="utf8") as file:
file.write(_utils.dumps(fm))