From e7520748865ca55fa70fc57c5095c00b05daa6fa Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Sun, 27 Mar 2016 16:40:19 -0700 Subject: [PATCH] Quote post title when creating new jekyll post. --- dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh index 0fb9681..5791c9d 100644 --- a/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh +++ b/dotfiles/zsh_custom/plugins/jekyll/jekyll.plugin.zsh @@ -48,7 +48,7 @@ function jekyll { JTEMPLATE="---\n" JTEMPLATE+="layout: post\n" - JTEMPLATE+="title: %s\n" + JTEMPLATE+="title: \"%s\"\n" JTEMPLATE+="category: Blog\n" JTEMPLATE+="---\n" TITLE=${@[2,-1]}