calavera-jekyll 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. data/History.txt +113 -0
  2. data/README.textile +548 -0
  3. data/VERSION.yml +4 -0
  4. data/bin/jekyll +150 -0
  5. data/lib/jekyll.rb +68 -0
  6. data/lib/jekyll/albino.rb +120 -0
  7. data/lib/jekyll/converters/csv.rb +26 -0
  8. data/lib/jekyll/converters/mephisto.rb +78 -0
  9. data/lib/jekyll/converters/mt.rb +59 -0
  10. data/lib/jekyll/converters/textpattern.rb +50 -0
  11. data/lib/jekyll/converters/typo.rb +49 -0
  12. data/lib/jekyll/converters/wordpress.rb +55 -0
  13. data/lib/jekyll/convertible.rb +71 -0
  14. data/lib/jekyll/core_ext.rb +29 -0
  15. data/lib/jekyll/filters.rb +55 -0
  16. data/lib/jekyll/layout.rb +33 -0
  17. data/lib/jekyll/page.rb +67 -0
  18. data/lib/jekyll/pager.rb +47 -0
  19. data/lib/jekyll/post.rb +201 -0
  20. data/lib/jekyll/site.rb +198 -0
  21. data/lib/jekyll/tags/highlight.rb +53 -0
  22. data/lib/jekyll/tags/include.rb +31 -0
  23. data/test/helper.rb +14 -0
  24. data/test/source/_includes/sig.markdown +3 -0
  25. data/test/source/_layouts/default.html +27 -0
  26. data/test/source/_layouts/simple.html +1 -0
  27. data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
  28. data/test/source/_posts/2008-11-21-complex.textile +8 -0
  29. data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
  30. data/test/source/_posts/2008-12-13-include.markdown +8 -0
  31. data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
  32. data/test/source/css/screen.css +76 -0
  33. data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
  34. data/test/source/index.html +23 -0
  35. data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
  36. data/test/suite.rb +9 -0
  37. data/test/test_filters.rb +41 -0
  38. data/test/test_generated_site.rb +36 -0
  39. data/test/test_jekyll.rb +0 -0
  40. data/test/test_post.rb +141 -0
  41. data/test/test_site.rb +45 -0
  42. data/test/test_tags.rb +31 -0
  43. metadata +212 -0
@@ -0,0 +1,113 @@
1
+ ==
2
+ * Minor Enhancements
3
+ * Ability to set post categories via YAML [github.com/qrush]
4
+ * Ability to set prevent a post from publishing via YAML [github.com/qrush]
5
+ * Add textilize filter [github.com/willcodeforfoo]
6
+ * Add 'pretty' permalink style for wordpress-like urls [github.com/dysinger]
7
+ * Made it possible to enter categories from YAML as an array [github.com/Chrononaut]
8
+ * Ignore Emacs autosave files [github.com/Chrononaut]
9
+ * Bug Fixes
10
+ * Use block syntax of popen4 to ensure that subprocesses are properly disposed [github.com/jqr]
11
+ * Close open4 streams to prevent zombies [github.com/rtomayko]
12
+ * Only query required fields from the WP Database [github.com/ariejan]
13
+ * Prevent _posts from being copied to the destination directory [github.com/bdimcheff]
14
+ * Refactors
15
+ * Factored the filtering code into a method [github.com/Chrononaut]
16
+
17
+ == 0.4.1
18
+ * Minor Enhancements
19
+ * Changed date format on wordpress converter (zeropadding) [github.com/dysinger]
20
+ * Bug Fixes
21
+ * Add jekyll binary as executable to gemspec [github.com/dysinger]
22
+
23
+ == 0.4.0 / 2009-02-03
24
+ * Major Enhancements
25
+ * Switch to Jeweler for packaging tasks
26
+ * Minor Enhancements
27
+ * Type importer [github.com/codeslinger]
28
+ * site.topics accessor [github.com/baz]
29
+ * Add array_to_sentence_string filter [github.com/mchung]
30
+ * Add a converter for textpattern [github.com/PerfectlyNormal]
31
+ * Add a working Mephisto / MySQL converter [github.com/ivey]
32
+ * Allowing .htaccess files to be copied over into the generated site [github.com/briandoll]
33
+ * Add option to not put file date in permalink URL [github.com/mreid]
34
+ * Add line number capabilities to highlight blocks [github.com/jcon]
35
+ * Bug Fixes
36
+ * Fix permalink behavior [github.com/cavalle]
37
+ * Fixed an issue with pygments, markdown, and newlines [github.com/zpinter]
38
+ * Ampersands need to be escaped [github.com/pufuwozu, github.com/ap]
39
+ * Test and fix the site.categories hash [github.com/zzot]
40
+ * Fix site payload available to files [github.com/matrix9180]
41
+
42
+ == 0.3.0 / 2008-12-24
43
+ * Major Enhancements
44
+ * Added --server option to start a simple WEBrick server on destination directory [github.com/johnreilly and github.com/mchung]
45
+ * Minor Enhancements
46
+ * Added post categories based on directories containing _posts [github.com/mreid]
47
+ * Added post topics based on directories underneath _posts
48
+ * Added new date filter that shows the full month name [github.com/mreid]
49
+ * Merge Post's YAML front matter into its to_liquid payload [github.com/remi]
50
+ * Restrict includes to regular files underneath _includes
51
+ * Bug Fixes
52
+ * Change YAML delimiter matcher so as to not chew up 2nd level markdown headers [github.com/mreid]
53
+ * Fix bug that meant page data (such as the date) was not available in templates [github.com/mreid]
54
+ * Properly reject directories in _layouts
55
+
56
+ == 0.2.1 / 2008-12-15
57
+ * Major Changes
58
+ * Use Maruku (pure Ruby) for Markdown by default [github.com/mreid]
59
+ * Allow use of RDiscount with --rdiscount flag
60
+ * Minor Enhancements
61
+ * Don't load directory_watcher unless it's needed [github.com/pjhyett]
62
+
63
+ == 0.2.0 / 2008-12-14
64
+ * Major Changes
65
+ * related_posts is now found in site.related_posts
66
+
67
+ == 0.1.6 / 2008-12-13
68
+ * Major Features
69
+ * Include files in _includes with {% include x.textile %}
70
+
71
+ == 0.1.5 / 2008-12-12
72
+ * Major Features
73
+ * Code highlighting with Pygments if --pygments is specified
74
+ * Disable true LSI by default, enable with --lsi
75
+ * Minor Enhancements
76
+ * Output informative message if RDiscount is not available [github.com/JackDanger]
77
+ * Bug Fixes
78
+ * Prevent Jekyll from picking up the output directory as a source [github.com/JackDanger]
79
+ * Skip related_posts when there is only one post [github.com/JackDanger]
80
+
81
+ == 0.1.4 / 2008-12-08
82
+ * Bug Fixes
83
+ * DATA does not work properly with rubygems
84
+
85
+ == 0.1.3 / 2008-12-06
86
+ * Major Features
87
+ * Markdown support [github.com/vanpelt]
88
+ * Mephisto and CSV converters [github.com/vanpelt]
89
+ * Code hilighting [github.com/vanpelt]
90
+ * Autobuild
91
+ * Bug Fixes
92
+ * Accept both \r\n and \n in YAML header [github.com/vanpelt]
93
+
94
+ == 0.1.2 / 2008-11-22
95
+ * Major Features
96
+ * Add a real "related posts" implementation using Classifier
97
+ * Command Line Changes
98
+ * Allow cli to be called with 0, 1, or 2 args intuiting dir paths
99
+ if they are omitted
100
+
101
+ == 0.1.1 / 2008-11-22
102
+ * Minor Additions
103
+ * Posts now support introspectional data e.g. {{ page.url }}
104
+
105
+ == 0.1.0 / 2008-11-05
106
+ * First release
107
+ * Converts posts written in Textile
108
+ * Converts regular site pages
109
+ * Simple copy of binary files
110
+
111
+ == 0.0.0 / 2008-10-19
112
+ * Birthday!
113
+
@@ -0,0 +1,548 @@
1
+ h1. Jekyll
2
+
3
+ Jekyll is a simple, blog aware, static site generator. It takes a template
4
+ directory (representing the raw form of a website), runs it through Textile or
5
+ Markdown and Liquid converters, and spits out a complete, static website
6
+ suitable for serving with Apache or your favorite web server. Visit
7
+ "http://tom.preston-werner.com":http://tom.preston-werner.com to see an
8
+ example of a Jekyll generated blog.
9
+
10
+ To understand how this all works, open up my
11
+ "TPW":http://github.com/mojombo/tpw repo in a new browser window. I'll be
12
+ referencing the code there.
13
+
14
+ Take a look at
15
+ "index.html":http://github.com/mojombo/tpw/tree/master/index.html. This file
16
+ represents the homepage of the site. At the top of the file is a chunk of YAML
17
+ that contains metadata about the file. This data tells Jekyll what layout to
18
+ give the file, what the page's title should be, etc. In this case, I specify
19
+ that the "default" template should be used. You can find the layout files in
20
+ the "_layouts":http://github.com/mojombo/tpw/tree/master/_layouts directory.
21
+ If you open
22
+ "default.html":http://github.com/mojombo/tpw/tree/master/_layouts/default.html
23
+ you can see that the homepage is constructed by wrapping index.html with this
24
+ layout.
25
+
26
+ You'll also notice Liquid templating code in these files.
27
+ "Liquid":http://www.liquidmarkup.org/ is a simple, extensible templating
28
+ language that makes it easy to embed data in your templates. For my homepage I
29
+ wanted to have a list of all my blog posts. Jekyll hands me a Hash containing
30
+ various data about my site. A reverse chronological list of all my blog posts
31
+ can be found in <code>site.posts</code>. Each post, in turn, contains various
32
+ fields such as <code>title</code> and <code>date</code>.
33
+
34
+ Jekyll gets the list of blog posts by parsing the files in any
35
+ "_posts":http://github.com/mojombo/tpw/tree/master/_posts directory found in
36
+ subdirectories below the root.
37
+ Each post's filename contains (by default) the publishing date and slug (what shows up in the
38
+ URL) that the final HTML file should have. Open up the file corresponding to a
39
+ blog post:
40
+ "2008-11-17-blogging-like-a-hacker.textile":http://github.com/mojombo/tpw/tree/master/_posts/2008-11-17-blogging-like-a-hacker.textile.
41
+ GitHub renders textile files by default, so to better understand the file,
42
+ click on the
43
+ "raw":http://github.com/mojombo/tpw/tree/master/_posts/2008-11-17-blogging-like-a-hacker.textile?raw=true
44
+ view to see the original file. Here I've specified the <code>post</code>
45
+ layout. If you look at that file you'll see an example of a nested layout.
46
+ Layouts can contain other layouts allowing you a great deal of flexibility in
47
+ how pages are assembled. In my case I use a nested layout in order to show
48
+ related posts for each blog entry. The YAML also specifies the post's title
49
+ which is then embedded in the post's body via Liquid.
50
+
51
+ Posts are handled in a special way by Jekyll. The date you specify in the
52
+ filename is used to construct the URL in the generated site. The example post,
53
+ for instance, ends up at
54
+ <code>http://tom.preston-werner.com/2008/11/17/blogging-like-a-hacker.html</code>.
55
+
56
+ Categories for posts are derived from the directory structure the posts were
57
+ found within. A post that appears in the directory foo/bar/_posts is placed in
58
+ the categories 'foo' and 'bar'. By selecting posts from particular categories
59
+ in your Liquid templates, you will be able to host multiple blogs within a
60
+ site.
61
+
62
+ Files that do not reside in directories prefixed with an underscore are
63
+ mirrored into a corresponding directory structure in the generated site. If a
64
+ file does not have a YAML preface, it is not run through the Liquid
65
+ interpreter. Binary files are copied over unmodified.
66
+
67
+ Jekyll is still a very young project. I've only developed the exact
68
+ functionality that I've needed. As time goes on I'd like to see the project
69
+ mature and support additional features. If you end up using Jekyll for your
70
+ own blog, drop me a line and let me know what you'd like to see in future
71
+ versions. Better yet, fork the project over at GitHub and hack in the features
72
+ yourself!
73
+
74
+ h2. Example Proto-Site
75
+
76
+ My own personal site/blog is generated with Jekyll.
77
+
78
+ The proto-site repo
79
+ ("http://github.com/mojombo/tpw":http://github.com/mojombo/tpw) is converted
80
+ into the actual site
81
+ ("http://tom.preston-werner.com/":http://tom.preston-werner.com)
82
+
83
+ h2. Install
84
+
85
+ The best way to install Jekyll is via RubyGems:
86
+
87
+ $ sudo gem install mojombo-jekyll -s http://gems.github.com/
88
+
89
+ Jekyll requires the gems `directory_watcher`, `liquid`, `open4`,
90
+ and `maruku` (for markdown support). These are automatically
91
+ installed by the gem install command.
92
+
93
+ Maruku comes with optional support for LaTeX to PNG rendering via
94
+ "blahtex":http://gva.noekeon.org/blahtexml/ (Version 0.6) which must be in
95
+ your $PATH along with `dvips`.
96
+
97
+ (NOTE: the version of maruku I am using is `remi-maruku` on GitHub as it
98
+ does not assume a fixed location for `dvips`.)
99
+
100
+ h2. Run
101
+
102
+ $ cd /path/to/proto/site
103
+ $ jekyll
104
+
105
+ This will generate the site and place it in /path/to/proto/site/_site. If
106
+ you'd like the generated site placed somewhere else:
107
+
108
+ $ jekyll /path/to/place/generated/site
109
+
110
+ And if you don't want to be in the proto site root to run Jekyll:
111
+
112
+ $ jekyll /path/to/proto/site /path/to/place/generated/site
113
+
114
+ h2. Run Options
115
+
116
+ h3. Autobuild
117
+
118
+ There is an autobuild feature that will regenerate your site if any of the
119
+ files change. The autobuild feature can be used on any of the invocations:
120
+
121
+ $ jekyll --auto
122
+
123
+ h3. Related Posts
124
+
125
+ By default, the "related posts" functionality will produce crappy results.
126
+ In order to get high quality results with a true LSI algorithm, you must
127
+ enable it (it may take some time to run if you have many posts):
128
+
129
+ $ jekyll --lsi
130
+
131
+ h3. Code Highlighting
132
+
133
+ For static code highlighting, you can install Pygments (see below) and then
134
+ use that to make your code blocks look pretty. To activate Pygments support
135
+ during the conversion:
136
+
137
+ $ jekyll --pygments
138
+
139
+ h3. Markdown Processor
140
+
141
+ By default, Jekyll uses "Maruku":http://maruku.rubyforge.org (pure Ruby) for
142
+ Markdown support. If you'd like to use RDiscount (faster, but requires
143
+ compilation), you must install it (gem install rdiscount) and then you can
144
+ have it used instead:
145
+
146
+ $ jekyll --rdiscount
147
+
148
+ h3. Local Server
149
+
150
+ When previewing complex sites locally, simply opening the site in a web
151
+ browser (using file://) can cause problems with links that are relative to
152
+ the site root (e.g., "/stylesheets/style.css"). To get around this, Jekyll
153
+ can launch a simple WEBrick server (works well in conjunction with --auto).
154
+ Default port is 4000:
155
+
156
+ $ jekyll --server [PORT]
157
+
158
+ h3. Permalink Style
159
+
160
+ By default, the permalink for each post begins with its date in 'YYYY/MM/DD'
161
+ format.
162
+
163
+ If you do not wish to have the date appear in the URL of each post,
164
+ you can change the permalink style to 'none' so that only the 'slug' part of
165
+ the filename is used. For example, with the permalink style set to 'none' the
166
+ file '2009-01-01-happy-new-year.markdown' will have a permalink like
167
+ 'http://yoursite.com/happy-new-year.html'. The date of the post will still be
168
+ read from the filename (and is required!) to be used elsewhere in Jekyll.
169
+
170
+ If you want WordPress-style pretty URLs that leave off the .html, you can
171
+ change the permalink style to 'pretty' and directories corresponding to the
172
+ date parts and post name will be made and an index.html will be placed in the
173
+ leaf directory resulting in URLs like 2008/11/17/blogging-like-a-hacker/.
174
+
175
+ $ jekyll --permalink [date|none|pretty]
176
+
177
+ There is also an option to paginate the blog's post. With this option enabled,
178
+ Jekyll takes the index.html file in your base directory and compiles it within
179
+ several directories called "page2", "page3" .. "pageN".
180
+
181
+ $ jekyll --paginate [PER_PAGE]
182
+
183
+ h3. Using jekyll.ini to add more run options
184
+
185
+ The jekyll.ini file allows you to add more run options. You have to add this file in your root directory.
186
+ This is quite useful if you don't run jekyll directly, for instance if you use github-pages
187
+ but you want to add more options to the default run command.
188
+
189
+ h2. Data
190
+
191
+ Jekyll traverses your site looking for files to process. Any files with YAML
192
+ front matter (see below) are subject to processing. For each of these files,
193
+ Jekyll makes a variety of data available to the pages via the Liquid
194
+ templating system. The following is a reference of the available data.
195
+
196
+ h3. Global
197
+
198
+ site
199
+ Sitewide information.
200
+
201
+ page
202
+ For Posts, this is the union of the data in the YAML front matter and the
203
+ computed data (such as URL and date). For regular pages, this is just the
204
+ YAML front matter.
205
+
206
+ content
207
+ In layout files, this contains the content of the subview(s). In Posts or
208
+ Pages, this is undefined.
209
+
210
+ paginator
211
+ Page information available when we use the paginate option. It includes
212
+ the posts within that page, the number of the previous and next pages
213
+ and other info that you can see in Jekyll::Site.paginate_posts.
214
+
215
+ h3. Site
216
+
217
+ site.time
218
+ The current Time (when you run the jekyll command).
219
+
220
+ site.posts
221
+ A reverse chronological list of all Posts.
222
+
223
+ site.related_posts
224
+ If the page being processed is a Post, this contains a list of up to ten
225
+ related Posts. By default, these are low quality but fast to compute. For
226
+ high quality but slow to compute results, run the jekyll command with the
227
+ --lsi (latent semantic indexing) option.
228
+
229
+ site.categories.CATEGORY
230
+ The list of all Posts in category CATEGORY.
231
+
232
+ h3. Post
233
+
234
+ post.title
235
+ The title of the Post.
236
+
237
+ post.url
238
+ The URL of the Post without the domain.
239
+ e.g. /2008/12/14/my-post.html
240
+
241
+ post.date
242
+ The Date assigned to the Post.
243
+
244
+ post.id
245
+ An identifier unique to the Post (useful in RSS feeds).
246
+ e.g. /2008/12/14/my-post
247
+
248
+ post.categories
249
+ The list of categories to which this post belongs. Categories are
250
+ derived from the directory structure above the _posts directory. For
251
+ example, a post at /work/code/_posts/2008-12-24-closures.textile
252
+ would have this field set to ['work', 'code'].
253
+
254
+ post.topics
255
+ The list of topics for this Post. Topics are derived from the directory
256
+ structure beneath the _posts directory. For example, a post at
257
+ /_posts/music/metal/2008-12-24-metalocalypse.textile would have this field
258
+ set to ['music', 'metal'].
259
+
260
+ post.content
261
+ The content of the Post.
262
+
263
+ h3. Paginator
264
+
265
+ paginator.page
266
+ The number of the current page.
267
+
268
+ paginator.per_page
269
+ Number of posts per page.
270
+
271
+ paginator.posts
272
+ Posts available for that page.
273
+
274
+ paginator.total_posts
275
+ Total number of posts.
276
+
277
+ paginator.total_pages
278
+ Total number of pages.
279
+
280
+ paginator.previous_page
281
+ The number of the previous page.
282
+
283
+ paginator.next_page
284
+ The number of the next page.
285
+
286
+ h2. YAML Front Matter
287
+
288
+ Any files that contain a YAML front matter block will be processed by Jekyll
289
+ as special files. The front matter must be the first thing in the file and
290
+ takes the form of:
291
+
292
+ <pre>
293
+ ---
294
+ layout: post
295
+ title: Blogging Like a Hacker
296
+ ---
297
+ </pre>
298
+
299
+ Between the triple-dashed lines, you can set predefined variables (see below
300
+ for a reference) or custom data of your own.
301
+
302
+ h3. Predefined Global Variables
303
+
304
+ layout
305
+ If set, this specifies the layout file to use. Use the layout file
306
+ name without file extension. Layout files must be placed in the
307
+ <code>_layouts</code> directory.
308
+
309
+ h3. Predefined Post Variables
310
+
311
+ permalink
312
+ If you need your processed URLs to be something other than the default
313
+ /year/month/day/title.html then you can set this variable and it will
314
+ be used as the final URL.
315
+
316
+ published
317
+ Set to false if you don't want a post to show up when the site is
318
+ generated.
319
+
320
+ category/categories
321
+ Instead of placing posts inside of folders, you can specify one or more
322
+ categories that the post belongs to. When the site is generated the post
323
+ will act as though it had been set with these categories normally.
324
+
325
+ h3. Custom Variables
326
+
327
+ Any variables in the front matter that are not predefined are mixed into the
328
+ data that is sent to the Liquid templating engine during the conversion. For
329
+ instance, if you set a <code>title</code>, you can use that in your layout to
330
+ set the page title:
331
+
332
+ <pre>
333
+ <title>{{ page.title }}</title>
334
+ </pre>
335
+
336
+ h2. Filters, Tags, and Blocks
337
+
338
+ In addition to the built-in Liquid filters, tags, and blocks, Jekyll provides
339
+ some additional items that you can use in your site.
340
+
341
+ h3. Date to XML Schema (Filter)
342
+
343
+ Convert a Time into XML Schema format.
344
+
345
+ {{ site.time | date_to_xmlschema }}
346
+
347
+ becomes
348
+
349
+ 2008-11-17T13:07:54-08:00
350
+
351
+ h3. XML Escape (Filter)
352
+
353
+ Escape some text for use in XML.
354
+
355
+ {{ post.content | xml_escape }}
356
+
357
+ h3. Number of Words (Filter)
358
+
359
+ Count the number of words in some text.
360
+
361
+ {{ post.content | number_of_words }}
362
+
363
+ becomes
364
+
365
+ 1337
366
+
367
+ h3. Array to Sentence String
368
+
369
+ Convert an array into a sentence.
370
+
371
+ {{ page.tags | array_to_sentence_string }}
372
+
373
+ becomes
374
+
375
+ foo, bar, and baz
376
+
377
+ h3. Textilize
378
+
379
+ Convert a Textile-formatted string into HTML, formatted via RedCloth
380
+
381
+ {{ page.excerpt | textilize }}
382
+
383
+ h3. Include (Tag)
384
+
385
+ If you have small page fragments that you wish to include in multiple places
386
+ on your site, you can use the <code>include</code> tag.
387
+
388
+ <pre>{% include sig.textile %}</pre>
389
+
390
+ Jekyll expects all include files to be placed in an <code>_includes</code>
391
+ directory at the root of your source dir. So this will embed the contents of
392
+ <code>/path/to/proto/site/_includes/sig.textile</code> into the calling file.
393
+
394
+ h3. Code Highlighting (Block)
395
+
396
+ Jekyll has built in support for syntax highlighting of over "100
397
+ languages":http://pygments.org/languages/ via "Pygments":http://pygments.org/.
398
+ In order to take advantage of this you'll need to have Pygments installed, and
399
+ the pygmentize binary must be in your path. When you run Jekyll, make sure you
400
+ run it with Pygments support:
401
+
402
+ $ jekyll --pygments
403
+
404
+ To denote a code block that should be highlighted:
405
+
406
+ <pre>
407
+ {% highlight ruby %}
408
+ def foo
409
+ puts 'foo'
410
+ end
411
+ {% endhighlight %}
412
+ </pre>
413
+
414
+ The argument to <code>highlight</code> is the language identifier. To find the
415
+ appropriate identifier to use for your favorite language, look for the "short
416
+ name" on the "Lexers":http://pygments.org/docs/lexers/ page.
417
+
418
+ There is a second argument to <code>highlight</code> called
419
+ <code>linenos</code> that is optional. Including the <code>linenos</code>
420
+ argument will force the highlighted code to include line numbers. For
421
+ instance, the following code block would include line numbers next to each
422
+ line:
423
+
424
+ <pre>
425
+ {% highlight ruby linenos %}
426
+ def foo
427
+ puts 'foo'
428
+ end
429
+ {% endhighlight %}
430
+ </pre>
431
+
432
+ In order for the highlighting to show up, you'll need to include a
433
+ highlighting stylesheet. For an example stylesheet you can look at
434
+ "syntax.css":http://github.com/mojombo/tpw/tree/master/css/syntax.css. These
435
+ are the same styles as used by GitHub and you are free to use them for your
436
+ own site. If you use linenos, you might want to include an additional CSS
437
+ class definition for <code>lineno</code> in syntax.css to distinguish the line
438
+ numbers from the highlighted code.
439
+
440
+ h2. Categories
441
+
442
+ Posts are placed into categories based on the directory structure they are
443
+ found within (see above for an example). The categories can be accessed from
444
+ within a Liquid template as follows:
445
+
446
+ <pre>
447
+ {% for post in site.categories.foo %}
448
+ <li><span>{{ post.date | date_to_string }}</span> - {{ post.title }}</li>
449
+ {% endfor %}
450
+ </pre>
451
+
452
+ This would list all the posts in the category 'foo' by date and title.
453
+
454
+ The posts within each category are sorted in reverse chronological order.
455
+
456
+ h2. Blog migrations
457
+
458
+ h3. Movable Type
459
+
460
+ To migrate your MT blog into Jekyll, you'll need read access to the database.
461
+ The lib/jekyll/converters/mt.rb module provides a simple convert to create
462
+ .markdown files in a _posts directory based on the entries contained therein.
463
+
464
+ $ export DB=my_mtdb
465
+ $ export USER=dbuser
466
+ $ export PASS=dbpass
467
+ $ ruby -r './lib/jekyll/converters/mt' -e 'Jekyll::MT.process( \
468
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
469
+
470
+ You may need to adjust the SQL query used to retrieve MT entries. Left alone,
471
+ it will attempt to pull all entries across all blogs regardless of status.
472
+ Please check the results and verify the posts before publishing.
473
+
474
+ h3. Typo 4+
475
+
476
+ To migrate your Typo blog into Jekyll, you'll need read access to the MySQL
477
+ database. The lib/jekyll/converters/typo.rb module provides a simple convert
478
+ to create .html, .textile, or .markdown files in a _posts directory based on
479
+ the entries contained therein.
480
+
481
+ $ export DB=my_typo_db
482
+ $ export USER=dbuser
483
+ $ export PASS=dbpass
484
+ $ ruby -r './lib/jekyll/converters/typo' -e 'Jekyll::Typo.process( \
485
+ "#{ENV["DB"]}", "#{ENV["USER"]}", "#{ENV["PASS"]}")'
486
+
487
+ You may need to adjust the code used to filter Typo entries. Left alone,
488
+ it will attempt to pull all entries across all blogs that were published.
489
+ This code also has only been tested with Typo version 4+. Previous versions
490
+ of Typo may not convert correctly. Please check the results and verify the
491
+ posts before publishing.
492
+
493
+ h3. TextPattern 4
494
+
495
+ To migrate your TextPattern blog into Jekyll, you'll need read access to the MySQL
496
+ database. The lib/jekyll/converters/textpattern.rb module provides a simple convert to create .textile files in a _posts directory based on
497
+ the entries contained therein.
498
+
499
+ $ ruby -r './lib/jekyll/converters/textpattern' -e 'Jekyll::TextPattern.process( \
500
+ "database_name", "username", "password", "hostname")'
501
+
502
+ The hostname defaults to _localhost_, all other variables are needed
503
+ You may need to adjust the code used to filter entries. Left alone,
504
+ it will attempt to pull all entries that are live or sticky.
505
+
506
+ h2. Contribute
507
+
508
+ If you'd like to hack on Jekyll, start by forking my repo on GitHub:
509
+
510
+ http://github.com/mojombo/jekyll
511
+
512
+ To get all of the dependencies, install the gem first. The best way to get
513
+ your changes merged back into core is as follows:
514
+
515
+ # Clone down your fork
516
+ # Create a topic branch to contain your change
517
+ # Hack away
518
+ # Add tests and make sure everything still passes by running `rake`
519
+ # If you are adding new functionality, document it in README.textile
520
+ # Do not change the version number, I will do that on my end
521
+ # If necessary, rebase your commits into logical chunks, without errors
522
+ # Push the branch up to GitHub
523
+ # Send me (mojombo) a pull request for your branch
524
+
525
+ h2. License
526
+
527
+ (The MIT License)
528
+
529
+ Copyright (c) 2008 Tom Preston-Werner
530
+
531
+ Permission is hereby granted, free of charge, to any person obtaining
532
+ a copy of this software and associated documentation files (the
533
+ 'Software'), to deal in the Software without restriction, including
534
+ without limitation the rights to use, copy, modify, merge, publish,
535
+ distribute, sublicense, and/or sell copies of the Software, and to
536
+ permit persons to whom the Software is furnished to do so, subject to
537
+ the following conditions:
538
+
539
+ The above copyright notice and this permission notice shall be
540
+ included in all copies or substantial portions of the Software.
541
+
542
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
543
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
544
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
545
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
546
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
547
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
548
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.