-
-
Save ff6347/8733f6461ecca95813e9641d1ffe59c4 to your computer and use it in GitHub Desktop.
Handy new post script for Jekyll blogs or similar
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 ruby | |
unless ARGV[0] | |
puts 'Usage: newpost "the post title"' | |
exit(-1) | |
end | |
date_prefix = Time.now.strftime("%Y-%m-%d") | |
postname = ARGV[0].strip.downcase.gsub(/ /, '-') | |
post = "/Users/al3x/src/al3x.github.com/_posts/#{date_prefix}-#{postname}.textile" | |
header = <<-END | |
--- | |
layout: post | |
title: "#{ARGV[0]}" | |
--- | |
h1. {{ page.title }} | |
END | |
File.open(post, 'w') do |f| | |
f << header | |
end | |
system("mate", "-a", post) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment