jekyll 1.0.4 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- checksums.yaml +14 -6
- data/{CONTRIBUTING.md → CONTRIBUTING.markdown} +19 -1
- data/History.markdown +172 -85
- data/README.markdown +45 -0
- data/Rakefile +43 -18
- data/bin/jekyll +31 -1
- data/features/create_sites.feature +18 -0
- data/features/include_tag.feature +35 -0
- data/features/pagination.feature +28 -0
- data/features/post_excerpts.feature +50 -0
- data/features/step_definitions/jekyll_steps.rb +27 -11
- data/features/support/env.rb +9 -0
- data/jekyll.gemspec +32 -7
- data/lib/jekyll.rb +2 -1
- data/lib/jekyll/commands/new.rb +15 -3
- data/lib/jekyll/configuration.rb +23 -22
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +4 -15
- data/lib/jekyll/convertible.rb +4 -0
- data/lib/jekyll/core_ext.rb +11 -0
- data/lib/jekyll/excerpt.rb +113 -0
- data/lib/jekyll/generators/pagination.rb +93 -23
- data/lib/jekyll/page.rb +1 -3
- data/lib/jekyll/post.rb +15 -55
- data/lib/jekyll/related_posts.rb +2 -1
- data/lib/jekyll/site.rb +33 -41
- data/lib/jekyll/stevenson.rb +25 -4
- data/lib/jekyll/tags/include.rb +46 -2
- data/lib/site_template/_config.yml +1 -0
- data/lib/site_template/css/main.css +0 -5
- data/site/_config.yml +1 -0
- data/site/_includes/docs_contents.html +12 -3
- data/site/_includes/docs_contents_mobile.html +7 -1
- data/site/_includes/news_contents.html +23 -0
- data/site/_includes/news_contents_mobile.html +11 -0
- data/site/_includes/news_item.html +24 -0
- data/site/_includes/primary-nav-items.html +4 -1
- data/site/_includes/top.html +2 -0
- data/site/_layouts/news.html +19 -0
- data/site/_layouts/news_item.html +27 -0
- data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +23 -0
- data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +27 -0
- data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +28 -0
- data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +25 -0
- data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +27 -0
- data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +31 -0
- data/site/css/style.css +125 -17
- data/site/docs/configuration.md +10 -1
- data/site/docs/contributing.md +21 -3
- data/site/docs/deployment-methods.md +2 -2
- data/site/docs/drafts.md +20 -0
- data/site/docs/extras.md +24 -3
- data/site/docs/github-pages.md +25 -0
- data/site/docs/history.md +150 -85
- data/site/docs/index.md +1 -17
- data/site/docs/installation.md +3 -2
- data/site/docs/migrations.md +2 -2
- data/site/docs/pagination.md +12 -0
- data/site/docs/plugins.md +97 -76
- data/site/docs/quickstart.md +32 -0
- data/site/docs/resources.md +0 -1
- data/site/docs/structure.md +15 -0
- data/site/docs/templates.md +26 -4
- data/site/docs/troubleshooting.md +22 -7
- data/site/docs/upgrading.md +6 -1
- data/site/docs/variables.md +12 -2
- data/site/feed.xml +36 -0
- data/site/freenode.txt +1 -0
- data/site/img/article-footer.png +0 -0
- data/site/img/footer-arrow.png +0 -0
- data/site/img/footer-logo.png +0 -0
- data/site/img/logo-2x.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/img/tube.png +0 -0
- data/site/img/tube1x.png +0 -0
- data/site/index.html +1 -1
- data/site/news/index.md +10 -0
- data/site/news/releases/index.md +10 -0
- data/test/source/+/foo.md +7 -0
- data/test/source/_includes/params.html +7 -0
- data/test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown +23 -0
- data/test/test_configuration.rb +9 -0
- data/test/test_excerpt.rb +62 -0
- data/test/test_generated_site.rb +1 -1
- data/test/test_page.rb +9 -0
- data/test/test_pager.rb +31 -37
- data/test/test_post.rb +2 -1
- data/test/test_related_posts.rb +6 -1
- data/test/test_tags.rb +90 -0
- metadata +62 -23
- data/README.textile +0 -45
data/site/docs/configuration.md
CHANGED
@@ -236,7 +236,16 @@ before your site is served.
|
|
236
236
|
|
237
237
|
Jekyll runs with the following configuration options by default. Unless
|
238
238
|
alternative settings for these options are explicitly specified in the
|
239
|
-
configuration file or on the command-line, Jekyll will run using these options.
|
239
|
+
[[configuration]] file or on the command-line, Jekyll will run using these options.
|
240
|
+
|
241
|
+
<div class="note warning">
|
242
|
+
<h5>There are two unsupported kramdown options</h5>
|
243
|
+
<p>
|
244
|
+
Please note that both remove_block_html_tags and
|
245
|
+
remove_span_html_tags are currently unsupported in jekyll due to the
|
246
|
+
fact that they are not included within the kramdown HTML converter.
|
247
|
+
</p>
|
248
|
+
</div>
|
240
249
|
|
241
250
|
{% highlight yaml %}
|
242
251
|
source: .
|
data/site/docs/contributing.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
---
|
2
2
|
layout: docs
|
3
3
|
title: Contributing
|
4
|
-
prev_section:
|
5
|
-
next_section:
|
4
|
+
prev_section: upgrading
|
5
|
+
next_section: history
|
6
6
|
permalink: /docs/contributing/
|
7
7
|
---
|
8
8
|
|
@@ -19,7 +19,7 @@ following in mind:
|
|
19
19
|
directory would be appreciated, and once merged it will also appear in
|
20
20
|
the next update of the main site.
|
21
21
|
* If your contribution adds or changes any Jekyll behavior, make sure to update
|
22
|
-
the documentation. It lives in `site/
|
22
|
+
the documentation. It lives in `site/docs`. If the docs are missing
|
23
23
|
information, please feel free to add it in. Great docs make a great project!
|
24
24
|
* Please follow the [GitHub Ruby Styleguide](https://github.com/styleguide/ruby)
|
25
25
|
when modifying Ruby code.
|
@@ -82,6 +82,24 @@ git push origin my_awesome_feature
|
|
82
82
|
* Create a pull request against mojombo/jekyll and describe what your change
|
83
83
|
does and the why you think it should be merged.
|
84
84
|
|
85
|
+
Updating Documentation
|
86
|
+
----------------------
|
87
|
+
|
88
|
+
We want the Jekyll documentation to be the best it can be. We've
|
89
|
+
open-sourced our docs and we welcome any pull requests if you find it
|
90
|
+
lacking.
|
91
|
+
|
92
|
+
You can find the documentation for jekyllrb.com in the
|
93
|
+
[site](https://github.com/mojombo/jekyll/tree/master/site) directory of
|
94
|
+
Jekyll's repo on GitHub.com.
|
95
|
+
|
96
|
+
All documentation pull requests should be directed at `master`. Pull
|
97
|
+
requests directed at another branch will not be accepted.
|
98
|
+
|
99
|
+
The [Jekyll wiki](https://github.com/mojombo/jekyll/wiki) on GitHub
|
100
|
+
can be freely updated without a pull request as all
|
101
|
+
GitHub users have access.
|
102
|
+
|
85
103
|
Gotchas
|
86
104
|
-------
|
87
105
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
layout: docs
|
3
3
|
title: Deployment methods
|
4
4
|
prev_section: github-pages
|
5
|
-
next_section:
|
5
|
+
next_section: troubleshooting
|
6
6
|
permalink: /docs/deployment-methods/
|
7
7
|
---
|
8
8
|
|
@@ -97,7 +97,7 @@ If you want to maintain Jekyll inside your existing Rails app, [Jekyll-Admin](ht
|
|
97
97
|
## Amazon S3
|
98
98
|
|
99
99
|
If you want to host your site in Amazon S3, you can do so with
|
100
|
-
[
|
100
|
+
[s3_website](https://github.com/laurilehmijoki/s3_website) application. It will
|
101
101
|
push your site to Amazon S3 where it can be served like any web server,
|
102
102
|
dynamically scaling to almost unlimited traffic. This approach has the
|
103
103
|
benefit of being about the cheapest hosting option available for
|
data/site/docs/drafts.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: docs
|
3
|
+
title: Working with drafts
|
4
|
+
permalink: /docs/drafts/
|
5
|
+
---
|
6
|
+
|
7
|
+
Drafts are posts without a date. They're posts you're still working on and don't want to
|
8
|
+
publish yet. To get up and running with drafts, create a `_drafts` folder in your site's
|
9
|
+
root (as described in the [site structure](/docs/structure/) section) and create your
|
10
|
+
first draft:
|
11
|
+
|
12
|
+
{% highlight text %}
|
13
|
+
|-- _drafts/
|
14
|
+
| |-- a-draft-post.md
|
15
|
+
{% endhighlight %}
|
16
|
+
|
17
|
+
To preview your site with drafts, simply run `jekyll serve` or `jekyll build` with
|
18
|
+
the `--drafts` switch. Each will be assigned the value of `Time.now`
|
19
|
+
for its date, and thus you will see them generated as the latest posts.
|
20
|
+
|
data/site/docs/extras.md
CHANGED
@@ -19,17 +19,38 @@ fork](http://github.com/remi/maruku).
|
|
19
19
|
## RDiscount
|
20
20
|
|
21
21
|
If you prefer to use [RDiscount](http://github.com/rtomayko/rdiscount) instead
|
22
|
-
of [Maruku](http://
|
22
|
+
of [Maruku](http://github.com/bhollis/maruku) for Markdown, just make sure you have
|
23
23
|
it installed:
|
24
24
|
|
25
25
|
{% highlight bash %}
|
26
|
-
$ sudo gem install rdiscount
|
26
|
+
$ [sudo] gem install rdiscount
|
27
27
|
{% endhighlight %}
|
28
28
|
|
29
29
|
And then specify RDiscount as the Markdown engine in your `_config.yml` file to
|
30
30
|
have Jekyll run with that option.
|
31
31
|
|
32
|
-
{% highlight
|
32
|
+
{% highlight yaml %}
|
33
33
|
# In _config.yml
|
34
34
|
markdown: rdiscount
|
35
35
|
{% endhighlight %}
|
36
|
+
|
37
|
+
## Kramdown
|
38
|
+
|
39
|
+
You can also use [Kramdown](http://kramdown.rubyforge.org/) instead of Maruku
|
40
|
+
for Markdown. Make sure that Kramdown is installed:
|
41
|
+
|
42
|
+
{% highlight bash %}
|
43
|
+
$ [sudo] gem install kramdown
|
44
|
+
{% endhighlight %}
|
45
|
+
|
46
|
+
Then you can specify Kramdown as the Markdown engine in `_config.yml`.
|
47
|
+
|
48
|
+
{% highlight yaml %}
|
49
|
+
# In _config.yml
|
50
|
+
markdown: kramdown
|
51
|
+
{% endhighlight %}
|
52
|
+
|
53
|
+
Kramdown has various options for customizing the HTML output. The
|
54
|
+
[Configuration](/docs/configuration/) page lists the default options used by
|
55
|
+
Jekyll. A complete list of options is also available on the [Kramdown
|
56
|
+
website](http://kramdown.rubyforge.org/options.html).
|
data/site/docs/github-pages.md
CHANGED
@@ -54,6 +54,31 @@ actual software project for Jekyll, however the Jekyll website (that you’re
|
|
54
54
|
looking at right now) is contained in the [gh-pages
|
55
55
|
branch](https://github.com/mojombo/jekyll/tree/gh-pages) of the same repository.
|
56
56
|
|
57
|
+
### Project Page URL Structure
|
58
|
+
|
59
|
+
Sometimes it's nice to preview your Jekyll site before you push your `gh-pages`
|
60
|
+
branch to GitHub. However, the subdirectory-like URL structure GitHub uses for
|
61
|
+
Project Pages complicates the proper resolution of URLs. Here is an approach to
|
62
|
+
utilizing the GitHub Project Page URL structure (`username.github.io/project-name/`)
|
63
|
+
whilst maintaining the ability to preview your Jekyll site locally.
|
64
|
+
|
65
|
+
1. In `_config.yml`, set the `baseurl` option to `/project-name` -- note the
|
66
|
+
leading slash and the **absence** of a trailing slash.
|
67
|
+
2. When referencing JS or CSS files, do it like this:
|
68
|
+
`{% raw %}{{ site.baseurl}}/path/to/css.css{% endraw %}` -- note the slash
|
69
|
+
immediately following the variable (just before "path").
|
70
|
+
3. When doing permalinks or internal links, do it like this:
|
71
|
+
`{% raw %}{{ site.baseurl }}{{ post.url }}{% endraw %}` -- note that there
|
72
|
+
is **no** slash between the two variables.
|
73
|
+
4. Finally, if you'd like to preview your site before committing/deploying using
|
74
|
+
`jekyll serve`, be sure to pass an **empty string** to the `--baseurl` option,
|
75
|
+
so that you can view everything at `localhost:4000` normally (without
|
76
|
+
`/project-name` at the beginning): `jekyll serve --baseurl ''`
|
77
|
+
|
78
|
+
This way you can preview your site locally from the site root on localhost,
|
79
|
+
but when GitHub generates your pages from the gh-pages branch all the URLs
|
80
|
+
will start with `/project-name` and resolve properly.
|
81
|
+
|
57
82
|
<div class="note">
|
58
83
|
<h5>GitHub Pages Documentation, Help, and Support</h5>
|
59
84
|
<p>
|
data/site/docs/history.md
CHANGED
@@ -2,18 +2,93 @@
|
|
2
2
|
layout: docs
|
3
3
|
title: History
|
4
4
|
permalink: /docs/history/
|
5
|
-
prev_section:
|
5
|
+
prev_section: contributing
|
6
6
|
---
|
7
7
|
|
8
|
-
##
|
8
|
+
## 1.1.0 / 2013-07-14
|
9
|
+
|
9
10
|
### Major Enhancements
|
11
|
+
- Add `docs` subcommand to read Jekyll's docs when offline. ([#1046](https://github.com/mojombo/jekyll/issues/1046))
|
12
|
+
- Support passing parameters to templates in `include` tag ([#1204](https://github.com/mojombo/jekyll/issues/1204))
|
13
|
+
- Add support for Liquid tags to post excerpts ([#1302](https://github.com/mojombo/jekyll/issues/1302))
|
14
|
+
|
15
|
+
### Minor Enhancements
|
16
|
+
- Search the hierarchy of pagination path up to site root to determine template page for
|
17
|
+
pagination. ([#1198](https://github.com/mojombo/jekyll/issues/1198))
|
18
|
+
- Add the ability to generate a new Jekyll site without a template ([#1171](https://github.com/mojombo/jekyll/issues/1171))
|
19
|
+
- Use redcarpet as the default markdown engine in newly generated
|
20
|
+
sites ([#1245](https://github.com/mojombo/jekyll/issues/1245), [#1247](https://github.com/mojombo/jekyll/issues/1247))
|
21
|
+
- Add `redcarpet` as a runtime dependency so `jekyll build` works out-of-the-box for new
|
22
|
+
sites. ([#1247](https://github.com/mojombo/jekyll/issues/1247))
|
23
|
+
- In the generated site, remove files that will be replaced by a
|
24
|
+
directory ([#1118](https://github.com/mojombo/jekyll/issues/1118))
|
25
|
+
- Fail loudly if a user-specified configuration file doesn't exist ([#1098](https://github.com/mojombo/jekyll/issues/1098))
|
26
|
+
- Allow for all options for Kramdown HTML Converter ([#1201](https://github.com/mojombo/jekyll/issues/1201))
|
27
|
+
|
28
|
+
### Bug Fixes
|
29
|
+
- Fix pagination in subdirectories. ([#1198](https://github.com/mojombo/jekyll/issues/1198))
|
30
|
+
- Fix an issue with directories and permalinks that have a plus sign
|
31
|
+
(+) in them ([#1215](https://github.com/mojombo/jekyll/issues/1215))
|
32
|
+
- Provide better error reporting when generating sites ([#1253](https://github.com/mojombo/jekyll/issues/1253))
|
33
|
+
- Latest posts first in non-LSI `related_posts` ([#1271](https://github.com/mojombo/jekyll/issues/1271))
|
34
|
+
|
35
|
+
### Development Fixes
|
36
|
+
- Merge the theme and layout cucumber steps into one step ([#1151](https://github.com/mojombo/jekyll/issues/1151))
|
37
|
+
- Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
|
38
|
+
- Include/exclude deprecation handling simplification ([#1284](https://github.com/mojombo/jekyll/issues/1284))
|
39
|
+
- Convert README to Markdown. ([#1267](https://github.com/mojombo/jekyll/issues/1267))
|
40
|
+
- Refactor Jekyll::Site ([#1144](https://github.com/mojombo/jekyll/issues/1144))
|
41
|
+
|
42
|
+
### Site Enhancements
|
43
|
+
- Add "News" section for release notes, along with an RSS feed ([#1093](https://github.com/mojombo/jekyll/issues/1093), [#1285](https://github.com/mojombo/jekyll/issues/1285), [#1286](https://github.com/mojombo/jekyll/issues/1286))
|
44
|
+
- Add "History" page.
|
45
|
+
- Restructured docs sections to include "Meta" section.
|
46
|
+
- Add message to "Templates" page that specifies that Python must be installed in order
|
47
|
+
to use Pygments. ([#1182](https://github.com/mojombo/jekyll/issues/1182))
|
48
|
+
- Update link to the official Maruku repo ([#1175](https://github.com/mojombo/jekyll/issues/1175))
|
49
|
+
- Add documentation about `paginate_path` to "Templates" page in docs ([#1129](https://github.com/mojombo/jekyll/issues/1129))
|
50
|
+
- Give the quick-start guide its own page ([#1191](https://github.com/mojombo/jekyll/issues/1191))
|
51
|
+
- Update ProTip on Installation page in docs to point to all the info about Pygments and
|
52
|
+
the 'highlight' tag. ([#1196](https://github.com/mojombo/jekyll/issues/1196))
|
53
|
+
- Run `site/img` through ImageOptim (thanks [@qrush](https://github.com/qrush)!) ([#1208](https://github.com/mojombo/jekyll/issues/1208))
|
54
|
+
- Added Jade Converter to `site/docs/plugins` ([#1210](https://github.com/mojombo/jekyll/issues/1210))
|
55
|
+
- Fix location of docs pages in Contributing pages ([#1214](https://github.com/mojombo/jekyll/issues/1214))
|
56
|
+
- Add ReadInXMinutes plugin to the plugin list ([#1222](https://github.com/mojombo/jekyll/issues/1222))
|
57
|
+
- Remove plugins from the plugin list that have equivalents in Jekyll
|
58
|
+
proper ([#1223](https://github.com/mojombo/jekyll/issues/1223))
|
59
|
+
- Add jekyll-assets to the plugin list ([#1225](https://github.com/mojombo/jekyll/issues/1225))
|
60
|
+
- Add jekyll-pandoc-mulitple-formats to the plugin list ([#1229](https://github.com/mojombo/jekyll/issues/1229))
|
61
|
+
- Remove dead link to "Using Git to maintain your blog" ([#1227](https://github.com/mojombo/jekyll/issues/1227))
|
62
|
+
- Tidy up the third-party plugins listing ([#1228](https://github.com/mojombo/jekyll/issues/1228))
|
63
|
+
- Update contributor information ([#1192](https://github.com/mojombo/jekyll/issues/1192))
|
64
|
+
- Update URL of article about Blogger migration ([#1242](https://github.com/mojombo/jekyll/issues/1242))
|
65
|
+
- Specify that RedCarpet is the default for new Jekyll sites on Quickstart page ([#1247](https://github.com/mojombo/jekyll/issues/1247))
|
66
|
+
- Added site.pages to Variables page in docs ([#1251](https://github.com/mojombo/jekyll/issues/1251))
|
67
|
+
- Add Youku and Tudou Embed link on Plugins page. ([#1250](https://github.com/mojombo/jekyll/issues/1250))
|
68
|
+
- Add note that `gist` tag supports private gists. ([#1248](https://github.com/mojombo/jekyll/issues/1248))
|
69
|
+
- Add `jekyll-timeago` to list of third-party plugins. ([#1260](https://github.com/mojombo/jekyll/issues/1260))
|
70
|
+
- Add `jekyll-swfobject` to list of third-party plugins. ([#1263](https://github.com/mojombo/jekyll/issues/1263))
|
71
|
+
- Add `jekyll-picture-tag` to list of third-party plugins. ([#1280](https://github.com/mojombo/jekyll/issues/1280))
|
72
|
+
- Update the GitHub Pages documentation regarding relative URLs
|
73
|
+
([#1291](https://github.com/mojombo/jekyll/issues/1291))
|
74
|
+
- Update the S3 deployment documentation ([#1294](https://github.com/mojombo/jekyll/issues/1294))
|
75
|
+
- Add suggestion for Xcode CLT install to troubleshooting page in docs ([#1296](https://github.com/mojombo/jekyll/issues/1296))
|
76
|
+
- Add 'Working with drafts' page to docs ([#1289](https://github.com/mojombo/jekyll/issues/1289))
|
77
|
+
- Add information about time zones to the documentation for a page's
|
78
|
+
date ([#1304](https://github.com/mojombo/jekyll/issues/1304))
|
79
|
+
|
80
|
+
## 1.0.3 / 2013-06-07
|
10
81
|
|
11
82
|
### Minor Enhancements
|
83
|
+
- Add support to gist tag for private gists. ([#1189](https://github.com/mojombo/jekyll/issues/1189))
|
84
|
+
- Fail loudly when MaRuKu errors out ([#1190](https://github.com/mojombo/jekyll/issues/1190))
|
12
85
|
- Move the building of related posts into their own class ([#1057](https://github.com/mojombo/jekyll/issues/1057))
|
13
86
|
- Removed trailing spaces in several places throughout the code ([#1116](https://github.com/mojombo/jekyll/issues/1116))
|
14
87
|
- Add a `--force` option to `jekyll new` ([#1115](https://github.com/mojombo/jekyll/issues/1115))
|
88
|
+
- Convert IDs in the site template to classes ([#1170](https://github.com/mojombo/jekyll/issues/1170))
|
15
89
|
|
16
90
|
### Bug Fixes
|
91
|
+
- Fix typo in Stevenson constant "ERROR". ([#1166](https://github.com/mojombo/jekyll/issues/1166))
|
17
92
|
- Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106](https://github.com/mojombo/jekyll/issues/1106))
|
18
93
|
- Exit with a non-zero exit code when dealing with a Liquid error ([#1121](https://github.com/mojombo/jekyll/issues/1121))
|
19
94
|
- Make the `exclude` and `include` options backwards compatible with
|
@@ -23,6 +98,9 @@ prev_section: upgrading
|
|
23
98
|
([#1156](https://github.com/mojombo/jekyll/issues/1156))
|
24
99
|
|
25
100
|
### Site Enhancements
|
101
|
+
- Add a Pro Tip to docs about front matter variables being optional ([#1147](https://github.com/mojombo/jekyll/issues/1147))
|
102
|
+
- Add changelog to site as History page in /docs/ ([#1065](https://github.com/mojombo/jekyll/issues/1065))
|
103
|
+
- Add note to Upgrading page about new config options in 1.0.x ([#1146](https://github.com/mojombo/jekyll/issues/1146))
|
26
104
|
- Documentation for `date_to_rfc822` and `uri_escape` ([#1142](https://github.com/mojombo/jekyll/issues/1142))
|
27
105
|
- Documentation highlight boxes shouldn't show scrollbars if not necessary ([#1123](https://github.com/mojombo/jekyll/issues/1123))
|
28
106
|
- Add link to jekyll-minibundle in the doc's plugins list ([#1035](https://github.com/mojombo/jekyll/issues/1035))
|
@@ -39,8 +117,10 @@ prev_section: upgrading
|
|
39
117
|
- Add the Jekyll Gallery Plugin to the plugin list ([#1143](https://github.com/mojombo/jekyll/issues/1143))
|
40
118
|
|
41
119
|
### Development Fixes
|
120
|
+
- Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149](https://github.com/mojombo/jekyll/issues/1149))
|
42
121
|
- Fix pesky Cucumber infinite loop ([#1139](https://github.com/mojombo/jekyll/issues/1139))
|
43
122
|
- Do not write posts with timezones in Cucumber tests ([#1124](https://github.com/mojombo/jekyll/issues/1124))
|
123
|
+
- Use ISO formatted dates in Cucumber features ([#1150](https://github.com/mojombo/jekyll/issues/1150))
|
44
124
|
|
45
125
|
## 1.0.2 / 2013-05-12
|
46
126
|
|
@@ -163,7 +243,7 @@ prev_section: upgrading
|
|
163
243
|
- Fixed Page#dir and Page#url for edge cases ([#536](https://github.com/mojombo/jekyll/issues/536))
|
164
244
|
- Fix broken post_url with posts with a time in their YAML Front-Matter ([#831](https://github.com/mojombo/jekyll/issues/831))
|
165
245
|
- Look for plugins under the source directory ([#654](https://github.com/mojombo/jekyll/issues/654))
|
166
|
-
- Tumblr Migrator: finds _posts dir correctly, fixes truncation of long
|
246
|
+
- Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long
|
167
247
|
post names ([#775](https://github.com/mojombo/jekyll/issues/775))
|
168
248
|
- Force Categories to be Strings ([#767](https://github.com/mojombo/jekyll/issues/767))
|
169
249
|
- Safe YAML plugin to prevent vulnerability ([#777](https://github.com/mojombo/jekyll/issues/777))
|
@@ -255,7 +335,7 @@ prev_section: upgrading
|
|
255
335
|
|
256
336
|
## 0.9.0 / 2010-12-15
|
257
337
|
### Minor Enhancements
|
258
|
-
- Use OptionParser's [no-] functionality for better boolean parsing.
|
338
|
+
- Use OptionParser's `[no-]` functionality for better boolean parsing.
|
259
339
|
- Add Drupal migrator ([#245](https://github.com/mojombo/jekyll/issues/245))
|
260
340
|
- Complain about YAML and Liquid errors ([#249](https://github.com/mojombo/jekyll/issues/249))
|
261
341
|
- Remove orphaned files during regeneration ([#247](https://github.com/mojombo/jekyll/issues/247))
|
@@ -272,7 +352,7 @@ prev_section: upgrading
|
|
272
352
|
- Bug Fixes
|
273
353
|
- Fixed filename basename generation ([#208](https://github.com/mojombo/jekyll/issues/208))
|
274
354
|
- Set mode to UTF8 on Sequel connections ([#237](https://github.com/mojombo/jekyll/issues/237))
|
275
|
-
- Prevent _includes dir from being a symlink
|
355
|
+
- Prevent `_includes` dir from being a symlink
|
276
356
|
|
277
357
|
## 0.7.0 / 2010-08-24
|
278
358
|
### Minor Enhancements
|
@@ -357,129 +437,116 @@ prev_section: upgrading
|
|
357
437
|
## 0.5.3 / 2009-07-14
|
358
438
|
- Bug Fixes
|
359
439
|
- Solving the permalink bug where non-html files wouldn't work
|
360
|
-
[github.com/jeffrydegrande
|
440
|
+
([@jeffrydegrande](https://github.com/jeffrydegrande))
|
361
441
|
|
362
442
|
## 0.5.2 / 2009-06-24
|
363
443
|
- Enhancements
|
364
444
|
- Added --paginate option to the executable along with a paginator object
|
365
|
-
for the payload [github.com/calavera
|
366
|
-
- Upgraded RedCloth to 4.2.1, which makes
|
445
|
+
for the payload ([@calavera](https://github.com/calavera))
|
446
|
+
- Upgraded RedCloth to 4.2.1, which makes `<notextile>` tags work once
|
367
447
|
again.
|
368
448
|
- Configuration options set in config.yml are now available through the
|
369
|
-
site payload [github.com/vilcans
|
449
|
+
site payload ([@vilcans](https://github.com/vilcans))
|
370
450
|
- Posts can now have an empty YAML front matter or none at all
|
371
|
-
[github.com/bahuvrihi
|
451
|
+
([@bahuvrihi](https://github.com/bahuvrihi))
|
372
452
|
- Bug Fixes
|
373
453
|
- Fixing Ruby 1.9 issue that requires to_s on the err object
|
374
|
-
[github.com/Chrononaut
|
375
|
-
- Fixes for pagination and ordering posts on the same day [github.com/ujh
|
454
|
+
([@Chrononaut](https://github.com/Chrononaut))
|
455
|
+
- Fixes for pagination and ordering posts on the same day ([@ujh](https://github.com/ujh))
|
376
456
|
- Made pages respect permalinks style and permalinks in yml front matter
|
377
|
-
[github.com/eugenebolshakov
|
457
|
+
([@eugenebolshakov](https://github.com/eugenebolshakov))
|
378
458
|
- Index.html file should always have index.html permalink
|
379
|
-
[github.com/eugenebolshakov
|
459
|
+
([@eugenebolshakov](https://github.com/eugenebolshakov))
|
380
460
|
- Added trailing slash to pretty permalink style so Apache is happy
|
381
|
-
[github.com/eugenebolshakov
|
461
|
+
([@eugenebolshakov](https://github.com/eugenebolshakov))
|
382
462
|
- Bad markdown processor in config fails sooner and with better message
|
383
|
-
[github.com/gcnovus
|
384
|
-
- Allow CRLFs in yaml frontmatter [github.com/juretta
|
463
|
+
([@gcnovus](https://github.com/gcnovus))
|
464
|
+
- Allow CRLFs in yaml frontmatter ([@juretta](https://github.com/juretta))
|
385
465
|
- Added Date#xmlschema for Ruby versions < 1.9
|
386
466
|
|
387
467
|
## 0.5.1 / 2009-05-06
|
388
468
|
### Major Enhancements
|
389
|
-
- Next/previous posts in site payload [github.com/pantulis,
|
390
|
-
github.com/tomo]
|
469
|
+
- Next/previous posts in site payload ([@pantulis](https://github.com/pantulis), [@tomo](https://github.com/tomo))
|
391
470
|
- Permalink templating system
|
392
471
|
- Moved most of the README out to the GitHub wiki
|
393
472
|
- Exclude option in configuration so specified files won't be brought over
|
394
|
-
with generated site [github.com/duritong
|
473
|
+
with generated site ([@duritong](https://github.com/duritong))
|
395
474
|
- Bug Fixes
|
396
475
|
- Making sure config.yaml references are all gone, using only config.yml
|
397
|
-
- Fixed syntax highlighting breaking for UTF-8 code [github.com/henrik
|
476
|
+
- Fixed syntax highlighting breaking for UTF-8 code ([@henrik](https://github.com/henrik))
|
398
477
|
- Worked around RDiscount bug that prevents Markdown from getting parsed
|
399
|
-
after highlight [github.com/henrik
|
400
|
-
- CGI escaped post titles [github.com/Chrononaut
|
478
|
+
after highlight ([@henrik](https://github.com/henrik))
|
479
|
+
- CGI escaped post titles ([@Chrononaut](https://github.com/Chrononaut))
|
401
480
|
|
402
481
|
## 0.5.0 / 2009-04-07
|
403
482
|
### Minor Enhancements
|
404
|
-
- Ability to set post categories via YAML [github.com/qrush
|
405
|
-
- Ability to set prevent a post from publishing via YAML
|
406
|
-
|
407
|
-
- Add
|
408
|
-
-
|
409
|
-
|
410
|
-
- Made it possible to enter categories from YAML as an array
|
411
|
-
[github.com/Chrononaut]
|
412
|
-
- Ignore Emacs autosave files [github.com/Chrononaut]
|
483
|
+
- Ability to set post categories via YAML ([@qrush](https://github.com/qrush))
|
484
|
+
- Ability to set prevent a post from publishing via YAML ([@qrush](https://github.com/qrush))
|
485
|
+
- Add textilize filter ([@willcodeforfoo](https://github.com/willcodeforfoo))
|
486
|
+
- Add 'pretty' permalink style for wordpress-like urls ([@dysinger](https://github.com/dysinger))
|
487
|
+
- Made it possible to enter categories from YAML as an array ([@Chrononaut](https://github.com/Chrononaut))
|
488
|
+
- Ignore Emacs autosave files ([@Chrononaut](https://github.com/Chrononaut))
|
413
489
|
- Bug Fixes
|
414
|
-
- Use block syntax of popen4 to ensure that subprocesses are properly
|
415
|
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
- Prevent _posts from being copied to the destination directory
|
419
|
-
[github.com/bdimcheff]
|
490
|
+
- Use block syntax of popen4 to ensure that subprocesses are properly disposed ([@jqr](https://github.com/jqr))
|
491
|
+
- Close open4 streams to prevent zombies ([@rtomayko](https://github.com/rtomayko))
|
492
|
+
- Only query required fields from the WP Database ([@ariejan](https://github.com/ariejan))
|
493
|
+
- Prevent `_posts` from being copied to the destination directory ([@bdimcheff](https://github.com/bdimcheff))
|
420
494
|
- Refactors
|
421
|
-
- Factored the filtering code into a method [github.com/Chrononaut
|
422
|
-
- Fix tests and convert to Shoulda [github.com/qrush,
|
423
|
-
|
424
|
-
- Add Cucumber acceptance test suite [github.com/qrush,
|
425
|
-
github.com/technicalpickles]
|
495
|
+
- Factored the filtering code into a method ([@Chrononaut](https://github.com/Chrononaut))
|
496
|
+
- Fix tests and convert to Shoulda ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
|
497
|
+
- Add Cucumber acceptance test suite ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
|
426
498
|
|
427
499
|
## 0.4.1
|
428
500
|
### Minor Enhancements
|
429
|
-
- Changed date format on wordpress converter (zeropadding)
|
430
|
-
[github.com/dysinger]
|
501
|
+
- Changed date format on wordpress converter (zeropadding) ([@dysinger](https://github.com/dysinger))
|
431
502
|
- Bug Fixes
|
432
|
-
- Add jekyll binary as executable to gemspec [github.com/dysinger
|
503
|
+
- Add jekyll binary as executable to gemspec ([@dysinger](https://github.com/dysinger))
|
433
504
|
|
434
505
|
## 0.4.0 / 2009-02-03
|
435
506
|
### Major Enhancements
|
436
507
|
- Switch to Jeweler for packaging tasks
|
437
508
|
|
438
509
|
### Minor Enhancements
|
439
|
-
- Type importer [github.com/codeslinger
|
440
|
-
- site.topics accessor [github.com/baz
|
441
|
-
- Add array_to_sentence_string filter [github.com/mchung
|
442
|
-
- Add a converter for textpattern [github.com/PerfectlyNormal
|
443
|
-
- Add a working Mephisto / MySQL converter [github.com/ivey
|
444
|
-
- Allowing .htaccess files to be copied over into the generated site
|
445
|
-
|
446
|
-
- Add
|
447
|
-
- Add line number capabilities to highlight blocks [github.com/jcon]
|
510
|
+
- Type importer ([@codeslinger](https://github.com/codeslinger))
|
511
|
+
- site.topics accessor ([@baz](https://github.com/baz))
|
512
|
+
- Add `array_to_sentence_string` filter ([@mchung](https://github.com/mchung))
|
513
|
+
- Add a converter for textpattern ([@PerfectlyNormal](https://github.com/PerfectlyNormal))
|
514
|
+
- Add a working Mephisto / MySQL converter ([@ivey](https://github.com/ivey))
|
515
|
+
- Allowing .htaccess files to be copied over into the generated site ([@briandoll](https://github.com/briandoll))
|
516
|
+
- Add option to not put file date in permalink URL ([@mreid](https://github.com/mreid))
|
517
|
+
- Add line number capabilities to highlight blocks ([@jcon](https://github.com/jcon))
|
448
518
|
- Bug Fixes
|
449
|
-
- Fix permalink behavior [github.com/cavalle
|
450
|
-
- Fixed an issue with pygments, markdown, and newlines
|
451
|
-
|
452
|
-
-
|
453
|
-
-
|
454
|
-
- Fix site payload available to files [github.com/matrix9180]
|
519
|
+
- Fix permalink behavior ([@cavalle](https://github.com/cavalle))
|
520
|
+
- Fixed an issue with pygments, markdown, and newlines ([@zpinter](https://github.com/zpinter))
|
521
|
+
- Ampersands need to be escaped ([@pufuwozu](https://github.com/pufuwozu), [@ap](https://github.com/ap))
|
522
|
+
- Test and fix the site.categories hash ([@zzot](https://github.com/zzot))
|
523
|
+
- Fix site payload available to files ([@matrix9180](https://github.com/matrix9180))
|
455
524
|
|
456
525
|
## 0.3.0 / 2008-12-24
|
457
526
|
### Major Enhancements
|
458
527
|
- Added --server option to start a simple WEBrick server on destination
|
459
|
-
directory [github.com/johnreilly and github.com/mchung
|
528
|
+
directory ([@johnreilly](https://github.com/johnreilly) and [@mchung](https://github.com/mchung))
|
460
529
|
|
461
530
|
### Minor Enhancements
|
462
|
-
- Added post categories based on directories containing _posts
|
463
|
-
|
464
|
-
- Added
|
465
|
-
-
|
466
|
-
-
|
467
|
-
[github.com/remi]
|
468
|
-
- Restrict includes to regular files underneath _includes
|
531
|
+
- Added post categories based on directories containing `_posts` ([@mreid](https://github.com/mreid))
|
532
|
+
- Added post topics based on directories underneath `_posts`
|
533
|
+
- Added new date filter that shows the full month name ([@mreid](https://github.com/mreid))
|
534
|
+
- Merge Post's YAML front matter into its to_liquid payload ([@remi](https://github.com/remi))
|
535
|
+
- Restrict includes to regular files underneath `_includes`
|
469
536
|
- Bug Fixes
|
470
537
|
- Change YAML delimiter matcher so as to not chew up 2nd level markdown
|
471
|
-
headers [github.com/mreid
|
538
|
+
headers ([@mreid](https://github.com/mreid))
|
472
539
|
- Fix bug that meant page data (such as the date) was not available in
|
473
|
-
templates [github.com/mreid
|
474
|
-
- Properly reject directories in _layouts
|
540
|
+
templates ([@mreid](https://github.com/mreid))
|
541
|
+
- Properly reject directories in `_layouts`
|
475
542
|
|
476
543
|
## 0.2.1 / 2008-12-15
|
477
544
|
- Major Changes
|
478
|
-
- Use Maruku (pure Ruby) for Markdown by default [github.com/mreid
|
545
|
+
- Use Maruku (pure Ruby) for Markdown by default ([@mreid](https://github.com/mreid))
|
479
546
|
- Allow use of RDiscount with --rdiscount flag
|
480
547
|
|
481
548
|
### Minor Enhancements
|
482
|
-
- Don't load directory_watcher unless it's needed [github.com/pjhyett
|
549
|
+
- Don't load directory_watcher unless it's needed ([@pjhyett](https://github.com/pjhyett))
|
483
550
|
|
484
551
|
## 0.2.0 / 2008-12-14
|
485
552
|
- Major Changes
|
@@ -487,7 +554,7 @@ prev_section: upgrading
|
|
487
554
|
|
488
555
|
## 0.1.6 / 2008-12-13
|
489
556
|
- Major Features
|
490
|
-
- Include files in _includes with {% include x.textile %}
|
557
|
+
- Include files in `_includes` with {% raw %}`{% include x.textile %}`{% endraw %}
|
491
558
|
|
492
559
|
## 0.1.5 / 2008-12-12
|
493
560
|
### Major Enhancements
|
@@ -495,12 +562,10 @@ prev_section: upgrading
|
|
495
562
|
- Disable true LSI by default, enable with --lsi
|
496
563
|
|
497
564
|
### Minor Enhancements
|
498
|
-
- Output informative message if RDiscount is not available
|
499
|
-
[github.com/JackDanger]
|
565
|
+
- Output informative message if RDiscount is not available ([@JackDanger](https://github.com/JackDanger))
|
500
566
|
- Bug Fixes
|
501
|
-
- Prevent Jekyll from picking up the output directory as a source
|
502
|
-
|
503
|
-
- Skip related_posts when there is only one post [github.com/JackDanger]
|
567
|
+
- Prevent Jekyll from picking up the output directory as a source ([@JackDanger](https://github.com/JackDanger))
|
568
|
+
- Skip `related_posts` when there is only one post ([@JackDanger](https://github.com/JackDanger))
|
504
569
|
|
505
570
|
## 0.1.4 / 2008-12-08
|
506
571
|
- Bug Fixes
|
@@ -508,12 +573,12 @@ prev_section: upgrading
|
|
508
573
|
|
509
574
|
## 0.1.3 / 2008-12-06
|
510
575
|
- Major Features
|
511
|
-
- Markdown support [github.com/vanpelt
|
512
|
-
- Mephisto and CSV converters [github.com/vanpelt
|
513
|
-
- Code hilighting [github.com/vanpelt
|
576
|
+
- Markdown support ([@vanpelt](https://github.com/vanpelt))
|
577
|
+
- Mephisto and CSV converters ([@vanpelt](https://github.com/vanpelt))
|
578
|
+
- Code hilighting ([@vanpelt](https://github.com/vanpelt))
|
514
579
|
- Autobuild
|
515
580
|
- Bug Fixes
|
516
|
-
- Accept both \r\n and \n in YAML header [github.com/vanpelt
|
581
|
+
- Accept both \r\n and \n in YAML header ([@vanpelt](https://github.com/vanpelt))
|
517
582
|
|
518
583
|
## 0.1.2 / 2008-11-22
|
519
584
|
- Major Features
|
@@ -524,7 +589,7 @@ prev_section: upgrading
|
|
524
589
|
|
525
590
|
## 0.1.1 / 2008-11-22
|
526
591
|
- Minor Additions
|
527
|
-
- Posts now support introspectional data e.g. {{ page.url }}
|
592
|
+
- Posts now support introspectional data e.g. {% raw %}`{{ page.url }}`{% endraw %}
|
528
593
|
|
529
594
|
## 0.1.0 / 2008-11-05
|
530
595
|
- First release
|