Created
September 5, 2015 19:24
-
-
Save wbsch/b3e6786f03795f7edc6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# | |
# Save as on-add_annotate.py in hooks directory, then: | |
# $ chmod +x ~/.task/hooks/on-add_annotate.py | |
# | |
# Anything after "annotate:" in a new task's description is added as an | |
# annotation: | |
# $ task add this is the description annotate:this is an annotation | |
import json | |
import sys | |
task = json.loads(sys.stdin.readline()) | |
try: | |
desc, anno = task["description"].split(" annotate:") | |
task["description"] = desc | |
task["annotations"] = [{"entry": task["entry"], "description": anno}] | |
except ValueError: | |
pass | |
print(json.dumps(task)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment