public
Description: Jekyll is a blog-aware, static site generator in Ruby
Homepage: http://jekyllrb.com
Clone URL: git://github.com/mojombo/jekyll.git

Comments for mojombo's jekyll   feed

allcaps commented on mojombo/jekyll Fri Jul 10 04:33:16 -0700 2009
Comment in c44036d:

Epic commit message.

mislav commented on mojombo/jekyll Mon Jun 29 07:35:33 -0700 2009
Comment in 8575a43:

awesome-tastic!

technicalpickles commented on mojombo/jekyll Sat Apr 04 23:30:04 -0700 2009
Comment in 07c2451:

Try 0.11.0. You should be able to:

gem.files.exclude 'test/dest/**/*'
samnardoni commented on mojombo/jekyll Wed Feb 25 13:34:44 -0800 2009
Comment in feff93c:

If a post has been created without any meta data at the top, it will fail here. Maybe self.data[“title”] should be set on initializing; being the slug if no meta data is provided.

bjartek commented on mojombo/jekyll Fri Feb 20 18:09:41 -0800 2009
Comment in 1211f23:

I belive this works. I use it in ‘my blog’:http://github.com/bjartek/bjartek.github.com/blob/d74a3bd052627a77d0c772a100d14ef66cc967f4/_layouts/default.html

vilcans commented on mojombo/jekyll Fri Feb 20 14:56:24 -0800 2009
Comment in 1211f23:

The first example was supposed to be:

categories:
 – foo
 – bar
 – xyzzy

vilcans commented on mojombo/jekyll Fri Feb 20 14:54:57 -0800 2009
Comment in 1211f23:

YAML has built-in support for lists of values, so why not use it? Like:

categories: – foo – bar – xyzzy

OR

categories: [ foo, bar, xyzzy ]

Comma-separated lists can co-exist with this if we want to.

mattmatt commented on mojombo/jekyll Thu Feb 19 12:27:40 -0800 2009
Comment in 1211f23:

That’s the usage. Works pretty well for me. Although the .split call will utterly fail when you just specify

-
categories: 
-

sdball commented on mojombo/jekyll Thu Feb 19 11:09:57 -0800 2009
Comment in 1211f23:

Looks nice, is this a stable addition?

Usage?

---
categories: foo, bar, xyzzy
---
whatcould commented on mojombo/jekyll Tue Feb 10 07:33:14 -0800 2009
Comment in 36183cb:

Still doesn’t seem to show up on my path… osx, gems 1.3.1. ??

ngerakines commented on mojombo/jekyll Fri Jan 02 13:17:43 -0800 2009
Comment in 29313b0:

shame

mchung commented on mojombo/jekyll Fri Jan 02 13:07:13 -0800 2009
Comment in 4db6961:

Nice. I’ve been treating ‘topics’ semantically like ‘tags’ and setting them as yaml front matter instead.

ncr commented on mojombo/jekyll Wed Dec 24 13:29:59 -0800 2008
Comment in f90ff54:

jekyll.gemspec needs to be updated too:


ncr:~/dev/jekyll$ gem build jekyll.gemspec 
WARNING:  no homepage specified
ERROR:  While executing gem ... (Errno::ENOENT)
    No such file or directory - test/source/posts/2008-12-03-permalinked-post.textile
remi commented on mojombo/jekyll Tue Dec 23 03:40:18 -0800 2008
Comment in 1aad12d:

note: the “mojombo merged commit ‘8d08a2’” commit made breaking changes, for me. site.posts is empty in index.html (because read_posts isn’t always called before rendering pages). fixed that but now post.content is the untransformed source of the post, not markdownified / textilized. trying to make sure transform explicitly gets called, setting post.content, before index.html (and other such pages) are rendered …

remi commented on mojombo/jekyll Tue Dec 23 02:22:20 -0800 2008
remi commented on mojombo/jekyll Tue Dec 23 02:15:32 -0800 2008
Comment in 1aad12d:

d’oh! in commit http://github.com/mojombo/jekyll/commit/6d8c73349e2e05529a3e4f7b27dd808070b7ab0e i decided that the post’s YAML front matter should get merged into the to_liquid instead of using post.data. I initially tried post.data, but merging into to_liquid seemed to be a much cleaner solution.

mojombo commented on mojombo/jekyll Sun Dec 21 21:53:18 -0800 2008
Comment in af7e2ac:

A WEBrick based alternative to this is now in master.

mojombo commented on mojombo/jekyll Sun Dec 21 21:48:57 -0800 2008

The commit has since been removed.

grempe commented on mojombo/jekyll Sun Dec 21 18:43:54 -0800 2008
Comment in 3a8f7a8:

Wouldn’t it be better to specify the categories that a post should belong to in an array in the yaml header for the post? This would seem to be a much more flexible way to add a post to multiple categories (and easily change your mind later). The dir structure approach would seem to lead to arbitrarily deep dir structures. And would be much more labor intensive to change. Taking it to the logical extreme, if I have 100 categories, and I have a post that I want to show in all 100 cats, do I have to create a dir structure 100 levels deep? Or do I have 100 dirs and symlink the post file into each of those dirs? (Caveat : I have not tried to use this feature yet so I could be full of crap.)

JackDanger commented on mojombo/jekyll Sat Dec 13 14:02:22 -0800 2008
Comment in f00272e:

Fantastic! I was looking for javascript-only libraries in case syntax highlighting would have complicated Jekyll. Looks like you found a great way to put this together.