Erick Ruiz de Chavez
40121b1c49
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.
10 lines
268 B
Python
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))
|