forked from swanson/swanson.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.py
33 lines (26 loc) · 843 Bytes
/
generate.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from argparse import ArgumentParser
import re, os
from datetime import date
p = ArgumentParser(description='Generate a jeykll blog post template')
p.add_argument('title', help='title of the post, generates slug')
p.add_argument('category', help='category (e.g blog, writeup)')
args = p.parse_args()
template = '''---
layout: %s
title: "%s"
categories:
- %s
---
Go-go-gadget blog post
'''
def slugify(value):
"slugify non-crazy strings"
value = unicode(re.sub('[^\w\s-]', '', value).strip().lower())
return re.sub('[-\s]+', '-', value)
fn = str(date.today()) + '-' + slugify(args.title) + '.md'
layout = "writeup" if args.category == "writeup" else "post"
post = template % (layout, args.title, args.category)
with open('_posts/%s' % fn, 'w') as fp:
fp.write(post)
os.system('subl -n . _posts/%s' % fn)
print "Crush it!"