Created
March 9, 2010 21:38
-
-
Save diasjorge/327154 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
;; jekyll support and config | |
;; http://github.com/metajack/jekyll/blob/master/emacs/jekyll.el | |
(require 'jekyll) | |
(setq jekyll-directory "/home/boston/development/mrdias.com/") | |
(setq jekyll-post-template "---\nlayout: post\ntitle: %s\n---\n\n") | |
(global-set-key (kbd "C-c j n") 'jekyll-draft-post) | |
(global-set-key (kbd "C-c j P") 'jekyll-publish-post) | |
(global-set-key (kbd "C-c j e") 'jekyll-insert-preview-end) | |
(defun jekyll-insert-preview-end () | |
"Insert the comment to mark the end of the post preview" | |
(interactive) | |
(insert "<!-- -**-END-**- -->")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment