import sys
import yaml
with open(sys.argv[1]) as fp:
data = fp.read()
if not data.find("---") == 0:
# no head
print("NO YAML HEAD FOUND")
sys.exit(-1)
data = data[3:]
head_end = data.find("---")
head = data[0:head_end]
data = data[head_end+3:]
metadata = yaml.safe_load(head)
cats = metadata.pop('categories', None)
if cats != None:
if type(cats) == list:
tags = cats
elif type(cats) == str:
tags = cats.split()
tags = list(map(lambda t: t.lower(), tags))
metadata["tags"] = ", ".join(tags)
new_data = f"---\n{yaml.dump(metadata, default_flow_style=False)}---{data}"
# write it
print(f"coverted: categories to tags: {tags} - {sys.argv[1]}")
with open(sys.argv[1], "w") as fp:
fp.write(new_data)
sys.exit(0)
if not metadata.get("tags", None):
metadata["tags"] = "untagged"
new_data = f"---\n{yaml.dump(metadata, default_flow_style=False)}---{data}"
print(f"untagged: {sys.argv[1]}")
# write it
with open(sys.argv[1], "w") as fp:
fp.write(new_data)
sys.exit(0)
print("No changes needed")
22 lines
657 B
Markdown
22 lines
657 B
Markdown
---
|
|
author: dhananjayishere
|
|
comments: true
|
|
date: 2011-04-20 11:56:22
|
|
layout: post
|
|
slug: happy
|
|
tags: friends, thoughts
|
|
title: happy
|
|
wordpress_id: 50200868
|
|
---
|
|
|
|
[hap-ee] adjective, -pier, -piest.
|
|
1.delighted, pleased, or glad, as over a particular thing: to be happy to see a person.
|
|
|
|
2.characterized by or indicative of pleasure, contentment, or joy: a happy mood; a happy frame of mind.
|
|
|
|
3.favored by fortune; fortunate or lucky: a happy, fruitful land.
|
|
|
|
4. apt or felicitous, as actions, utterances, or ideas.
|
|
|
|
5. obsessed by or quick to use the item indicated (usually used in combination): a trigger-happy gangster. Everybody is gadget-happy these days.
|