mirror of
https://github.com/alvierahman90/gronk.git
synced 2024-11-21 15:09:51 +00:00
formatting
This commit is contained in:
parent
af5bef0125
commit
09334831f7
@ -1,21 +1,22 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
|
||||
import pathlib
|
||||
import sys
|
||||
import uuid
|
||||
|
||||
|
||||
import editfrontmatter
|
||||
import frontmatter
|
||||
|
||||
|
||||
def get_args():
|
||||
""" Get command line arguments """
|
||||
|
||||
import argparse
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('filename', type=pathlib.Path)
|
||||
parser.add_argument('-w', '--write', action='store_true',
|
||||
parser.add_argument('-w',
|
||||
'--write',
|
||||
action='store_true',
|
||||
help='write to file instead of stdout')
|
||||
return parser.parse_args()
|
||||
|
||||
@ -33,7 +34,8 @@ def main(args):
|
||||
with open(args.filename) as fp:
|
||||
fm_pre = frontmatter.load(fp)
|
||||
|
||||
processor = editfrontmatter.EditFrontMatter(file_path=args.filename, template_str=template_str)
|
||||
processor = editfrontmatter.EditFrontMatter(file_path=args.filename,
|
||||
template_str=template_str)
|
||||
fm_data = fm_pre.metadata
|
||||
if 'uuid' not in fm_data.keys():
|
||||
fm_data['uuid'] = str(uuid.uuid4())
|
||||
|
Loading…
Reference in New Issue
Block a user