Hyde
Hyde copied to clipboard
An Emacs mode to manage Jekyll blogs
If you start hyde from a buffer where `buffer-file-name` returns `nil` you get the following error: `abbreviate-file-name: Wrong type argument: stringp, nil` The problem seems to be [in `hyde/ask-for-jekyll-root`](https://github.com/nibrahim/Hyde/blob/a8cd6ed00ecd8d7de0ded2f4867015b412b15b76/hyde.el#L519). Perhaps...
I think Hyde is using CommonLisp that is not included in GNU Emacs as described [here](http://www.emacswiki.org/emacs/CommonLispForEmacs). In order to make Hyde work in my emacs installation I had to add...
In [`sample-dot-hyde.el`](https://github.com/nibrahim/Hyde/blob/master/sample-dot-hyde.el) the value of `hyde/git/remote`is set twice. First to set the remote and second to set the branch. As I read the code it looks like the branch setting...
Addresses #24 This removes the date from the front-matter of a draft post and from the draft filename to comply with how [drafts](https://jekyllrb.com/docs/drafts/) are structured in Jekyll 3.x.x. Upon promotion...
I'm trying to use a custom value for `hyde/hyde-list-posts-command`, but after searching over the source code I believe it is not implemented, am I missing something? hyde version: commit 640959dd6837487dd4545809d6cc9ef54283673d
This pull-request is more to get to know the code then anything else, but it is a real feature. With this patch it is now possible to promote / demote...
Hi Noufal, Please consider merging this. I've created hyde-pkg.el and a build.sh which creates .tar file which can be uploaded to mermalade. Once you have merged this I will also...
Per the Jekyll documentation, drafts should not have dates, and instead a draft should receive its date only when it is promoted to a post. Otherwise this leads to issues...
The asset management code works but still has a lot of issues. 1. You can't edit promoted posts that have assets. 2. The paths are not totally configurable. I'm sure...