1
0
Fork 0

Add WIP changes

This commit is contained in:
Luca Beltrame 2021-01-03 12:33:21 +01:00
parent ad2f6f72c8
commit 864124f7d2
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -24,7 +24,7 @@ def new_post_title(title: str) -> str:
def create_post(post_title: str, tags: List[str] = None,
categories: List[str] = None) -> bool:
categories: List[str] = None, comments: bool = True) -> bool:
cmd = ["hugo", "new", "-k", "post"]
title = new_post_title(post_title)
path = Path(POST_PATH) / title
@ -41,6 +41,8 @@ def create_post(post_title: str, tags: List[str] = None,
if tags is not None:
header["tags"] = tags
header["comments"] = comments
with path.open("w") as handle:
frontmatter.dump(header, handle)
@ -48,6 +50,20 @@ def create_post(post_title: str, tags: List[str] = None,
def main():
parser = argparse.ArgumentParser()
parser.add_argument("-t", "--tags", nargs="+",
help="Post tags (space separated)")
parser.add_argument("-c", "--categories", nargs="+",
help="Post categories (space separated)")
parser.add_argument("--disable_comments", action="store_false",
help="Disable comments for the post")
parser.add_argument("--commit", action="store_true",
help="Commit and push to the remote repository")
parser.add_argument("--draft", action="store_true",
help="Create the post as draft")
parser.add_argument("title", help="Title of the new post")
pass