jekyll 1.1.2 → 1.2.0
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 +6 -14
- data/History.markdown +71 -0
- data/README.markdown +13 -3
- data/Rakefile +11 -2
- data/bin/jekyll +6 -5
- data/features/permalinks.feature +20 -0
- data/features/site_data.feature +6 -0
- data/features/step_definitions/jekyll_steps.rb +1 -1
- data/jekyll.gemspec +8 -3
- data/lib/jekyll.rb +3 -1
- data/lib/jekyll/cleaner.rb +73 -0
- data/lib/jekyll/commands/doctor.rb +40 -2
- data/lib/jekyll/commands/new.rb +2 -2
- data/lib/jekyll/commands/serve.rb +10 -3
- data/lib/jekyll/configuration.rb +14 -1
- data/lib/jekyll/converters/markdown.rb +1 -1
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +4 -8
- data/lib/jekyll/converters/markdown/rdiscount_parser.rb +3 -1
- data/lib/jekyll/convertible.rb +14 -4
- data/lib/jekyll/core_ext.rb +0 -8
- data/lib/jekyll/deprecator.rb +13 -9
- data/lib/jekyll/generators/pagination.rb +1 -1
- data/lib/jekyll/page.rb +33 -34
- data/lib/jekyll/post.rb +48 -51
- data/lib/jekyll/site.rb +11 -50
- data/lib/jekyll/stevenson.rb +1 -1
- data/lib/jekyll/tags/include.rb +19 -13
- data/lib/jekyll/url.rb +67 -0
- data/lib/site_template/_layouts/default.html +20 -22
- data/site/_config.yml +3 -1
- data/site/_includes/docs_contents.html +50 -50
- data/site/_includes/docs_contents_mobile.html +25 -25
- data/site/_includes/footer.html +1 -1
- data/site/_includes/primary-nav-items.html +3 -3
- data/site/_includes/section_nav.html +2 -2
- data/site/_includes/top.html +1 -1
- data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +1 -1
- data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +1 -1
- data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +1 -1
- data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +2 -2
- data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +4 -4
- data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +7 -7
- data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +6 -6
- data/site/_posts/2013-09-06-jekyll-1-2-0-released.markdown +23 -0
- data/site/css/normalize.css +1 -504
- data/site/docs/configuration.md +46 -6
- data/site/docs/contributing.md +3 -3
- data/site/docs/deployment-methods.md +2 -2
- data/site/docs/frontmatter.md +2 -2
- data/site/docs/github-pages.md +2 -2
- data/site/docs/history.md +265 -265
- data/site/docs/index.md +1 -1
- data/site/docs/installation.md +4 -4
- data/site/docs/migrations.md +14 -11
- data/site/docs/pages.md +1 -1
- data/site/docs/pagination.md +1 -1
- data/site/docs/permalinks.md +2 -2
- data/site/docs/plugins.md +18 -10
- data/site/docs/posts.md +9 -8
- data/site/docs/resources.md +2 -2
- data/site/docs/sites.md +1 -1
- data/site/docs/structure.md +9 -9
- data/site/docs/templates.md +4 -3
- data/site/docs/troubleshooting.md +11 -3
- data/site/docs/usage.md +8 -3
- data/site/docs/variables.md +7 -7
- data/site/feed.xml +1 -1
- data/site/index.html +3 -3
- data/test/source/_posts/2013-08-01-mkdn-extension.mkdn +0 -0
- data/test/test_configuration.rb +14 -0
- data/test/test_excerpt.rb +16 -0
- data/test/test_generated_site.rb +1 -1
- data/test/test_post.rb +7 -0
- data/test/test_url.rb +28 -0
- metadata +27 -21
data/site/docs/configuration.md
CHANGED
@@ -54,7 +54,7 @@ class="flag">flags</code> (specified on the command-line) that control them.
|
|
54
54
|
<tr class='setting'>
|
55
55
|
<td>
|
56
56
|
<p class='name'><strong>Safe</strong></p>
|
57
|
-
<p class='description'>Disable <a href="../plugins">custom plugins</a>.</p>
|
57
|
+
<p class='description'>Disable <a href="../plugins/">custom plugins</a>.</p>
|
58
58
|
</td>
|
59
59
|
<td class="align-center">
|
60
60
|
<p><code class="option">safe: BOOL</code></p>
|
@@ -126,10 +126,10 @@ class="flag">flags</code> (specified on the command-line) that control them.
|
|
126
126
|
<tr class='setting'>
|
127
127
|
<td>
|
128
128
|
<p class='name'><strong>Configuration</strong></p>
|
129
|
-
<p class="description">Specify
|
129
|
+
<p class="description">Specify config files instead of using <code>_config.yml</code> automatically. Settings in later files override settings in earlier files.</p>
|
130
130
|
</td>
|
131
131
|
<td class='align-center'>
|
132
|
-
<p><code class="flag">--config
|
132
|
+
<p><code class="flag">--config FILE1[,FILE2,...]</code></p>
|
133
133
|
</td>
|
134
134
|
</tr>
|
135
135
|
<tr class='setting'>
|
@@ -220,6 +220,16 @@ before your site is served.
|
|
220
220
|
<p><code class="flag">--baseurl URL</code></p>
|
221
221
|
</td>
|
222
222
|
</tr>
|
223
|
+
<tr class='setting'>
|
224
|
+
<td>
|
225
|
+
<p class='name'><strong>Detach</strong></p>
|
226
|
+
<p class='description'>Detach the server from the terminal</p>
|
227
|
+
</td>
|
228
|
+
<td class="align-center">
|
229
|
+
<p><code class="option">detach: BOOL</code></p>
|
230
|
+
<p><code class="flag">-B, --detach</code></p>
|
231
|
+
</td>
|
232
|
+
</tr>
|
223
233
|
</tbody>
|
224
234
|
</table>
|
225
235
|
</div>
|
@@ -236,13 +246,13 @@ before your site is served.
|
|
236
246
|
|
237
247
|
Jekyll runs with the following configuration options by default. Unless
|
238
248
|
alternative settings for these options are explicitly specified in the
|
239
|
-
|
249
|
+
configuration file or on the command-line, Jekyll will run using these options.
|
240
250
|
|
241
251
|
<div class="note warning">
|
242
252
|
<h5>There are two unsupported kramdown options</h5>
|
243
253
|
<p>
|
244
|
-
Please note that both remove_block_html_tags and
|
245
|
-
remove_span_html_tags are currently unsupported in
|
254
|
+
Please note that both <code>remove_block_html_tags</code> and
|
255
|
+
<code>remove_span_html_tags</code> are currently unsupported in Jekyll due to the
|
246
256
|
fact that they are not included within the kramdown HTML converter.
|
247
257
|
</p>
|
248
258
|
</div>
|
@@ -314,3 +324,33 @@ kramdown:
|
|
314
324
|
redcloth:
|
315
325
|
hard_breaks: true
|
316
326
|
{% endhighlight %}
|
327
|
+
|
328
|
+
|
329
|
+
## Markdown Options
|
330
|
+
|
331
|
+
The various Markdown renderers supported by Jekyll sometimes have extra options available.
|
332
|
+
|
333
|
+
### Redcarpet
|
334
|
+
|
335
|
+
Redcarpet can be configured by providing an `extensions` sub-setting, whose value should be an array of strings. Each string should be the name of one of the `Redcarpet::Markdown` class's extensions; if present in the array, it will set the corresponding extension to `true`.
|
336
|
+
|
337
|
+
Jekyll handles two special Redcarpet extensions:
|
338
|
+
|
339
|
+
- `no_fenced_code_blocks` --- By default, Jekyll sets the `fenced_code_blocks` extension (for delimiting code blocks with triple tildes or triple backticks) to `true`, probably because GitHub's eager adoption of them is starting to make them inescapable. Redcarpet's normal `fenced_code_blocks` extension is inert when used with Jekyll; instead, you can use this inverted version of the extension for disabling fenced code.
|
340
|
+
|
341
|
+
Note that you can also specify a language for highlighting after the first delimiter:
|
342
|
+
|
343
|
+
```ruby
|
344
|
+
# ...ruby code
|
345
|
+
```
|
346
|
+
|
347
|
+
With both fenced code blocks and pygments enabled, this will statically highlight the code; without pygments, it will add a `class="LANGUAGE"` attribute to the `<code>` element, which can be used as a hint by various JavaScript code highlighting libraries.
|
348
|
+
- `smart` --- This pseudo-extension turns on SmartyPants, which converts straight quotes to curly quotes and runs of hyphens to em (`---`) and en (`--`) dashes.
|
349
|
+
|
350
|
+
All other extensions retain their usual names from Redcarpet, and no renderer options aside from `smart` can be specified in Jekyll. [A list of available extensions can be found in the Redcarpet README file.][redcarpet_extensions] Make sure you're looking at the README for the right version of Redcarpet: Jekyll currently uses v2.2.x, and extensions like `footnotes` and `highlight` weren't added until after version 3.0.0. The most commonly used extensions are:
|
351
|
+
|
352
|
+
- `tables`
|
353
|
+
- `no_intra_emphasis`
|
354
|
+
- `autolink`
|
355
|
+
|
356
|
+
[redcarpet_extensions]: https://github.com/vmg/redcarpet/blob/v2.2.2/README.markdown#and-its-like-really-simple-to-use
|
data/site/docs/contributing.md
CHANGED
@@ -90,13 +90,13 @@ open-sourced our docs and we welcome any pull requests if you find it
|
|
90
90
|
lacking.
|
91
91
|
|
92
92
|
You can find the documentation for jekyllrb.com in the
|
93
|
-
[site](
|
93
|
+
[site]({{ site.repository }}/tree/master/site) directory of
|
94
94
|
Jekyll's repo on GitHub.com.
|
95
95
|
|
96
96
|
All documentation pull requests should be directed at `master`. Pull
|
97
97
|
requests directed at another branch will not be accepted.
|
98
98
|
|
99
|
-
The [Jekyll wiki](
|
99
|
+
The [Jekyll wiki]({{ site.repository }}/wiki) on GitHub
|
100
100
|
can be freely updated without a pull request as all
|
101
101
|
GitHub users have access.
|
102
102
|
|
@@ -116,7 +116,7 @@ Gotchas
|
|
116
116
|
<p>
|
117
117
|
Both using and hacking on Jekyll should be fun, simple, and easy, so if for
|
118
118
|
some reason you find it’s a pain, please <a
|
119
|
-
href="
|
119
|
+
href="{{ site.repository }}/issues/new">create an issue</a> on
|
120
120
|
GitHub describing your experience so we can make it better.
|
121
121
|
</p>
|
122
122
|
</div>
|
@@ -23,7 +23,7 @@ If you have direct access yourself to the deployment web server yourself, the pr
|
|
23
23
|
|
24
24
|
## Automated methods
|
25
25
|
|
26
|
-
There are also a number of ways to easily automate the deployment of a Jekyll site. If you’ve got another method that isn’t listed below, we’d love it if you [contributed](../contributing) so that everyone else can benefit too.
|
26
|
+
There are also a number of ways to easily automate the deployment of a Jekyll site. If you’ve got another method that isn’t listed below, we’d love it if you [contributed](../contributing/) so that everyone else can benefit too.
|
27
27
|
|
28
28
|
### Git post-update hook
|
29
29
|
|
@@ -105,5 +105,5 @@ low-volume blogs as you only pay for what you use.
|
|
105
105
|
|
106
106
|
<div class="note">
|
107
107
|
<h5>ProTip™: Use GitHub Pages for zero-hassle Jekyll hosting</h5>
|
108
|
-
<p>GitHub Pages are powered by Jekyll behind the scenes, so if you’re looking for a zero-hassle, zero-cost solution, GitHub Pages are a great way to <a href="../github-pages">host your Jekyll-powered website for free</a>.</p>
|
108
|
+
<p>GitHub Pages are powered by Jekyll behind the scenes, so if you’re looking for a zero-hassle, zero-cost solution, GitHub Pages are a great way to <a href="../github-pages/">host your Jekyll-powered website for free</a>.</p>
|
109
109
|
</div>
|
data/site/docs/frontmatter.md
CHANGED
@@ -37,8 +37,8 @@ relies on.
|
|
37
37
|
<div class="note">
|
38
38
|
<h5>ProTip™: Front Matter Variables Are Optional</h5>
|
39
39
|
<p>
|
40
|
-
If you want to use <a href="../variables">Liquid tags and variables</a> but
|
41
|
-
don
|
40
|
+
If you want to use <a href="../variables/">Liquid tags and variables</a> but
|
41
|
+
don’t need anything in your front-matter, just leave it empty! The set of
|
42
42
|
triple-dashed lines with nothing in between will still get Jekyll to process
|
43
43
|
your file. (This is useful for things like CSS and RSS feeds!)
|
44
44
|
</p>
|
data/site/docs/github-pages.md
CHANGED
@@ -49,10 +49,10 @@ of your user pages subdomain, such as `username.github.io/project` (unless a
|
|
49
49
|
custom domain is specified—see below).
|
50
50
|
|
51
51
|
The Jekyll project repository itself is a perfect example of this branch
|
52
|
-
structure—the [master branch](
|
52
|
+
structure—the [master branch]({{ site.repository }}) contains the
|
53
53
|
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
|
-
branch](
|
55
|
+
branch]({{ site.repository }}/tree/gh-pages) of the same repository.
|
56
56
|
|
57
57
|
### Project Page URL Structure
|
58
58
|
|
data/site/docs/history.md
CHANGED
@@ -8,297 +8,297 @@ prev_section: contributing
|
|
8
8
|
## 1.1.0 / 2013-07-14
|
9
9
|
|
10
10
|
### Major Enhancements
|
11
|
-
- Add `docs` subcommand to read Jekyll's docs when offline. ([#1046](
|
12
|
-
- Support passing parameters to templates in `include` tag ([#1204](
|
13
|
-
- Add support for Liquid tags to post excerpts ([#1302](
|
11
|
+
- Add `docs` subcommand to read Jekyll's docs when offline. ([#1046]({{ site.repository }}/issues/1046))
|
12
|
+
- Support passing parameters to templates in `include` tag ([#1204]({{ site.repository }}/issues/1204))
|
13
|
+
- Add support for Liquid tags to post excerpts ([#1302]({{ site.repository }}/issues/1302))
|
14
14
|
|
15
15
|
### Minor Enhancements
|
16
16
|
- Search the hierarchy of pagination path up to site root to determine template page for
|
17
|
-
pagination. ([#1198](
|
18
|
-
- Add the ability to generate a new Jekyll site without a template ([#1171](
|
17
|
+
pagination. ([#1198]({{ site.repository }}/issues/1198))
|
18
|
+
- Add the ability to generate a new Jekyll site without a template ([#1171]({{ site.repository }}/issues/1171))
|
19
19
|
- Use redcarpet as the default markdown engine in newly generated
|
20
|
-
sites ([#1245](
|
20
|
+
sites ([#1245]({{ site.repository }}/issues/1245), [#1247]({{ site.repository }}/issues/1247))
|
21
21
|
- Add `redcarpet` as a runtime dependency so `jekyll build` works out-of-the-box for new
|
22
|
-
sites. ([#1247](
|
22
|
+
sites. ([#1247]({{ site.repository }}/issues/1247))
|
23
23
|
- In the generated site, remove files that will be replaced by a
|
24
|
-
directory ([#1118](
|
25
|
-
- Fail loudly if a user-specified configuration file doesn't exist ([#1098](
|
26
|
-
- Allow for all options for Kramdown HTML Converter ([#1201](
|
24
|
+
directory ([#1118]({{ site.repository }}/issues/1118))
|
25
|
+
- Fail loudly if a user-specified configuration file doesn't exist ([#1098]({{ site.repository }}/issues/1098))
|
26
|
+
- Allow for all options for Kramdown HTML Converter ([#1201]({{ site.repository }}/issues/1201))
|
27
27
|
|
28
28
|
### Bug Fixes
|
29
|
-
- Fix pagination in subdirectories. ([#1198](
|
29
|
+
- Fix pagination in subdirectories. ([#1198]({{ site.repository }}/issues/1198))
|
30
30
|
- Fix an issue with directories and permalinks that have a plus sign
|
31
|
-
(+) in them ([#1215](
|
32
|
-
- Provide better error reporting when generating sites ([#1253](
|
33
|
-
- Latest posts first in non-LSI `related_posts` ([#1271](
|
31
|
+
(+) in them ([#1215]({{ site.repository }}/issues/1215))
|
32
|
+
- Provide better error reporting when generating sites ([#1253]({{ site.repository }}/issues/1253))
|
33
|
+
- Latest posts first in non-LSI `related_posts` ([#1271]({{ site.repository }}/issues/1271))
|
34
34
|
|
35
35
|
### Development Fixes
|
36
|
-
- Merge the theme and layout cucumber steps into one step ([#1151](
|
36
|
+
- Merge the theme and layout cucumber steps into one step ([#1151]({{ site.repository }}/issues/1151))
|
37
37
|
- Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
|
38
|
-
- Include/exclude deprecation handling simplification ([#1284](
|
39
|
-
- Convert README to Markdown. ([#1267](
|
40
|
-
- Refactor Jekyll::Site ([#1144](
|
38
|
+
- Include/exclude deprecation handling simplification ([#1284]({{ site.repository }}/issues/1284))
|
39
|
+
- Convert README to Markdown. ([#1267]({{ site.repository }}/issues/1267))
|
40
|
+
- Refactor Jekyll::Site ([#1144]({{ site.repository }}/issues/1144))
|
41
41
|
|
42
42
|
### Site Enhancements
|
43
|
-
- Add "News" section for release notes, along with an RSS feed ([#1093](
|
43
|
+
- Add "News" section for release notes, along with an RSS feed ([#1093]({{ site.repository }}/issues/1093), [#1285]({{ site.repository }}/issues/1285), [#1286]({{ site.repository }}/issues/1286))
|
44
44
|
- Add "History" page.
|
45
45
|
- Restructured docs sections to include "Meta" section.
|
46
46
|
- Add message to "Templates" page that specifies that Python must be installed in order
|
47
|
-
to use Pygments. ([#1182](
|
48
|
-
- Update link to the official Maruku repo ([#1175](
|
49
|
-
- Add documentation about `paginate_path` to "Templates" page in docs ([#1129](
|
50
|
-
- Give the quick-start guide its own page ([#1191](
|
47
|
+
to use Pygments. ([#1182]({{ site.repository }}/issues/1182))
|
48
|
+
- Update link to the official Maruku repo ([#1175]({{ site.repository }}/issues/1175))
|
49
|
+
- Add documentation about `paginate_path` to "Templates" page in docs ([#1129]({{ site.repository }}/issues/1129))
|
50
|
+
- Give the quick-start guide its own page ([#1191]({{ site.repository }}/issues/1191))
|
51
51
|
- Update ProTip on Installation page in docs to point to all the info about Pygments and
|
52
|
-
the 'highlight' tag. ([#1196](
|
53
|
-
- Run `site/img` through ImageOptim (thanks [@qrush](https://github.com/qrush)!) ([#1208](
|
54
|
-
- Added Jade Converter to `site/docs/plugins` ([#1210](
|
55
|
-
- Fix location of docs pages in Contributing pages ([#1214](
|
56
|
-
- Add ReadInXMinutes plugin to the plugin list ([#1222](
|
52
|
+
the 'highlight' tag. ([#1196]({{ site.repository }}/issues/1196))
|
53
|
+
- Run `site/img` through ImageOptim (thanks [@qrush](https://github.com/qrush)!) ([#1208]({{ site.repository }}/issues/1208))
|
54
|
+
- Added Jade Converter to `site/docs/plugins` ([#1210]({{ site.repository }}/issues/1210))
|
55
|
+
- Fix location of docs pages in Contributing pages ([#1214]({{ site.repository }}/issues/1214))
|
56
|
+
- Add ReadInXMinutes plugin to the plugin list ([#1222]({{ site.repository }}/issues/1222))
|
57
57
|
- Remove plugins from the plugin list that have equivalents in Jekyll
|
58
|
-
proper ([#1223](
|
59
|
-
- Add jekyll-assets to the plugin list ([#1225](
|
60
|
-
- Add jekyll-pandoc-mulitple-formats to the plugin list ([#1229](
|
61
|
-
- Remove dead link to "Using Git to maintain your blog" ([#1227](
|
62
|
-
- Tidy up the third-party plugins listing ([#1228](
|
63
|
-
- Update contributor information ([#1192](
|
64
|
-
- Update URL of article about Blogger migration ([#1242](
|
65
|
-
- Specify that RedCarpet is the default for new Jekyll sites on Quickstart page ([#1247](
|
66
|
-
- Added site.pages to Variables page in docs ([#1251](
|
67
|
-
- Add Youku and Tudou Embed link on Plugins page. ([#1250](
|
68
|
-
- Add note that `gist` tag supports private gists. ([#1248](
|
69
|
-
- Add `jekyll-timeago` to list of third-party plugins. ([#1260](
|
70
|
-
- Add `jekyll-swfobject` to list of third-party plugins. ([#1263](
|
71
|
-
- Add `jekyll-picture-tag` to list of third-party plugins. ([#1280](
|
58
|
+
proper ([#1223]({{ site.repository }}/issues/1223))
|
59
|
+
- Add jekyll-assets to the plugin list ([#1225]({{ site.repository }}/issues/1225))
|
60
|
+
- Add jekyll-pandoc-mulitple-formats to the plugin list ([#1229]({{ site.repository }}/issues/1229))
|
61
|
+
- Remove dead link to "Using Git to maintain your blog" ([#1227]({{ site.repository }}/issues/1227))
|
62
|
+
- Tidy up the third-party plugins listing ([#1228]({{ site.repository }}/issues/1228))
|
63
|
+
- Update contributor information ([#1192]({{ site.repository }}/issues/1192))
|
64
|
+
- Update URL of article about Blogger migration ([#1242]({{ site.repository }}/issues/1242))
|
65
|
+
- Specify that RedCarpet is the default for new Jekyll sites on Quickstart page ([#1247]({{ site.repository }}/issues/1247))
|
66
|
+
- Added site.pages to Variables page in docs ([#1251]({{ site.repository }}/issues/1251))
|
67
|
+
- Add Youku and Tudou Embed link on Plugins page. ([#1250]({{ site.repository }}/issues/1250))
|
68
|
+
- Add note that `gist` tag supports private gists. ([#1248]({{ site.repository }}/issues/1248))
|
69
|
+
- Add `jekyll-timeago` to list of third-party plugins. ([#1260]({{ site.repository }}/issues/1260))
|
70
|
+
- Add `jekyll-swfobject` to list of third-party plugins. ([#1263]({{ site.repository }}/issues/1263))
|
71
|
+
- Add `jekyll-picture-tag` to list of third-party plugins. ([#1280]({{ site.repository }}/issues/1280))
|
72
72
|
- Update the GitHub Pages documentation regarding relative URLs
|
73
|
-
([#1291](
|
74
|
-
- Update the S3 deployment documentation ([#1294](
|
75
|
-
- Add suggestion for Xcode CLT install to troubleshooting page in docs ([#1296](
|
76
|
-
- Add 'Working with drafts' page to docs ([#1289](
|
73
|
+
([#1291]({{ site.repository }}/issues/1291))
|
74
|
+
- Update the S3 deployment documentation ([#1294]({{ site.repository }}/issues/1294))
|
75
|
+
- Add suggestion for Xcode CLT install to troubleshooting page in docs ([#1296]({{ site.repository }}/issues/1296))
|
76
|
+
- Add 'Working with drafts' page to docs ([#1289]({{ site.repository }}/issues/1289))
|
77
77
|
- Add information about time zones to the documentation for a page's
|
78
|
-
date ([#1304](
|
78
|
+
date ([#1304]({{ site.repository }}/issues/1304))
|
79
79
|
|
80
80
|
## 1.0.3 / 2013-06-07
|
81
81
|
|
82
82
|
### Minor Enhancements
|
83
|
-
- Add support to gist tag for private gists. ([#1189](
|
84
|
-
- Fail loudly when MaRuKu errors out ([#1190](
|
85
|
-
- Move the building of related posts into their own class ([#1057](
|
86
|
-
- Removed trailing spaces in several places throughout the code ([#1116](
|
87
|
-
- Add a `--force` option to `jekyll new` ([#1115](
|
88
|
-
- Convert IDs in the site template to classes ([#1170](
|
83
|
+
- Add support to gist tag for private gists. ([#1189]({{ site.repository }}/issues/1189))
|
84
|
+
- Fail loudly when MaRuKu errors out ([#1190]({{ site.repository }}/issues/1190))
|
85
|
+
- Move the building of related posts into their own class ([#1057]({{ site.repository }}/issues/1057))
|
86
|
+
- Removed trailing spaces in several places throughout the code ([#1116]({{ site.repository }}/issues/1116))
|
87
|
+
- Add a `--force` option to `jekyll new` ([#1115]({{ site.repository }}/issues/1115))
|
88
|
+
- Convert IDs in the site template to classes ([#1170]({{ site.repository }}/issues/1170))
|
89
89
|
|
90
90
|
### Bug Fixes
|
91
|
-
- Fix typo in Stevenson constant "ERROR". ([#1166](
|
92
|
-
- Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106](
|
93
|
-
- Exit with a non-zero exit code when dealing with a Liquid error ([#1121](
|
91
|
+
- Fix typo in Stevenson constant "ERROR". ([#1166]({{ site.repository }}/issues/1166))
|
92
|
+
- Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106]({{ site.repository }}/issues/1106))
|
93
|
+
- Exit with a non-zero exit code when dealing with a Liquid error ([#1121]({{ site.repository }}/issues/1121))
|
94
94
|
- Make the `exclude` and `include` options backwards compatible with
|
95
|
-
versions of Jekyll prior to 1.0 ([#1114](
|
96
|
-
- Fix pagination on Windows ([#1063](
|
95
|
+
versions of Jekyll prior to 1.0 ([#1114]({{ site.repository }}/issues/1114))
|
96
|
+
- Fix pagination on Windows ([#1063]({{ site.repository }}/issues/1063))
|
97
97
|
- Fix the application of Pygments' Generic Output style to Go code
|
98
|
-
([#1156](
|
98
|
+
([#1156]({{ site.repository }}/issues/1156))
|
99
99
|
|
100
100
|
### Site Enhancements
|
101
|
-
- Add a Pro Tip to docs about front matter variables being optional ([#1147](
|
102
|
-
- Add changelog to site as History page in /docs/ ([#1065](
|
103
|
-
- Add note to Upgrading page about new config options in 1.0.x ([#1146](
|
104
|
-
- Documentation for `date_to_rfc822` and `uri_escape` ([#1142](
|
105
|
-
- Documentation highlight boxes shouldn't show scrollbars if not necessary ([#1123](
|
106
|
-
- Add link to jekyll-minibundle in the doc's plugins list ([#1035](
|
101
|
+
- Add a Pro Tip to docs about front matter variables being optional ([#1147]({{ site.repository }}/issues/1147))
|
102
|
+
- Add changelog to site as History page in /docs/ ([#1065]({{ site.repository }}/issues/1065))
|
103
|
+
- Add note to Upgrading page about new config options in 1.0.x ([#1146]({{ site.repository }}/issues/1146))
|
104
|
+
- Documentation for `date_to_rfc822` and `uri_escape` ([#1142]({{ site.repository }}/issues/1142))
|
105
|
+
- Documentation highlight boxes shouldn't show scrollbars if not necessary ([#1123]({{ site.repository }}/issues/1123))
|
106
|
+
- Add link to jekyll-minibundle in the doc's plugins list ([#1035]({{ site.repository }}/issues/1035))
|
107
107
|
- Quick patch for importers documentation
|
108
|
-
- Fix prefix for WordpressDotCom importer in docs ([#1107](
|
109
|
-
- Add jekyll-contentblocks plugin to docs ([#1068](
|
110
|
-
- Make code bits in notes look more natural, more readable ([#1089](
|
111
|
-
- Fix logic for `relative_permalinks` instructions on Upgrading page ([#1101](
|
112
|
-
- Add docs for post excerpt ([#1072](
|
113
|
-
- Add docs for gist tag ([#1072](
|
108
|
+
- Fix prefix for WordpressDotCom importer in docs ([#1107]({{ site.repository }}/issues/1107))
|
109
|
+
- Add jekyll-contentblocks plugin to docs ([#1068]({{ site.repository }}/issues/1068))
|
110
|
+
- Make code bits in notes look more natural, more readable ([#1089]({{ site.repository }}/issues/1089))
|
111
|
+
- Fix logic for `relative_permalinks` instructions on Upgrading page ([#1101]({{ site.repository }}/issues/1101))
|
112
|
+
- Add docs for post excerpt ([#1072]({{ site.repository }}/issues/1072))
|
113
|
+
- Add docs for gist tag ([#1072]({{ site.repository }}/issues/1072))
|
114
114
|
- Add docs indicating that Pygments does not need to be installed
|
115
|
-
separately ([#1099](
|
116
|
-
- Update the migrator docs to be current ([#1136](
|
117
|
-
- Add the Jekyll Gallery Plugin to the plugin list ([#1143](
|
115
|
+
separately ([#1099]({{ site.repository }}/issues/1099), [#1119]({{ site.repository }}/issues/1119))
|
116
|
+
- Update the migrator docs to be current ([#1136]({{ site.repository }}/issues/1136))
|
117
|
+
- Add the Jekyll Gallery Plugin to the plugin list ([#1143]({{ site.repository }}/issues/1143))
|
118
118
|
|
119
119
|
### Development Fixes
|
120
|
-
- Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149](
|
121
|
-
- Fix pesky Cucumber infinite loop ([#1139](
|
122
|
-
- Do not write posts with timezones in Cucumber tests ([#1124](
|
123
|
-
- Use ISO formatted dates in Cucumber features ([#1150](
|
120
|
+
- Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149]({{ site.repository }}/issues/1149))
|
121
|
+
- Fix pesky Cucumber infinite loop ([#1139]({{ site.repository }}/issues/1139))
|
122
|
+
- Do not write posts with timezones in Cucumber tests ([#1124]({{ site.repository }}/issues/1124))
|
123
|
+
- Use ISO formatted dates in Cucumber features ([#1150]({{ site.repository }}/issues/1150))
|
124
124
|
|
125
125
|
## 1.0.2 / 2013-05-12
|
126
126
|
|
127
127
|
### Major Enhancements
|
128
|
-
- Add `jekyll doctor` command to check site for any known compatibility problems ([#1081](
|
129
|
-
- Backwards-compatibilize relative permalinks ([#1081](
|
128
|
+
- Add `jekyll doctor` command to check site for any known compatibility problems ([#1081]({{ site.repository }}/issues/1081))
|
129
|
+
- Backwards-compatibilize relative permalinks ([#1081]({{ site.repository }}/issues/1081))
|
130
130
|
|
131
131
|
### Minor Enhancements
|
132
|
-
- Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066](
|
133
|
-
- Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084](
|
134
|
-
- Update pygments.rb version to 0.5.0 ([#1061](
|
135
|
-
- Update Kramdown version to 1.0.2 ([#1067](
|
132
|
+
- Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066]({{ site.repository }}/issues/1066))
|
133
|
+
- Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084]({{ site.repository }}/issues/1084))
|
134
|
+
- Update pygments.rb version to 0.5.0 ([#1061]({{ site.repository }}/issues/1061))
|
135
|
+
- Update Kramdown version to 1.0.2 ([#1067]({{ site.repository }}/issues/1067))
|
136
136
|
|
137
137
|
### Bug Fixes
|
138
|
-
- Fix issue when categories are numbers ([#1078](
|
139
|
-
- Catching that Redcarpet gem isn't installed ([#1059](
|
138
|
+
- Fix issue when categories are numbers ([#1078]({{ site.repository }}/issues/1078))
|
139
|
+
- Catching that Redcarpet gem isn't installed ([#1059]({{ site.repository }}/issues/1059))
|
140
140
|
|
141
141
|
### Site Enhancements
|
142
|
-
- Add documentation about `relative_permalinks` ([#1081](
|
143
|
-
- Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079](
|
144
|
-
- Move pages to be Pages for realz ([#985](
|
145
|
-
- Updated links to Liquid documentation ([#1073](
|
142
|
+
- Add documentation about `relative_permalinks` ([#1081]({{ site.repository }}/issues/1081))
|
143
|
+
- Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079]({{ site.repository }}/issues/1079))
|
144
|
+
- Move pages to be Pages for realz ([#985]({{ site.repository }}/issues/985))
|
145
|
+
- Updated links to Liquid documentation ([#1073]({{ site.repository }}/issues/1073))
|
146
146
|
|
147
147
|
## 1.0.1 / 2013-05-08
|
148
148
|
|
149
149
|
### Minor Enhancements
|
150
|
-
- Do not force use of toc_token when using generate_tok in RDiscount ([#1048](
|
151
|
-
- Add newer `language-` class name prefix to code blocks ([#1037](
|
152
|
-
- Commander error message now preferred over process abort with incorrect args ([#1040](
|
150
|
+
- Do not force use of toc_token when using generate_tok in RDiscount ([#1048]({{ site.repository }}/issues/1048))
|
151
|
+
- Add newer `language-` class name prefix to code blocks ([#1037]({{ site.repository }}/issues/1037))
|
152
|
+
- Commander error message now preferred over process abort with incorrect args ([#1040]({{ site.repository }}/issues/1040))
|
153
153
|
|
154
154
|
### Bug Fixes
|
155
|
-
- Make Redcarpet respect the pygments configuration option ([#1053](
|
156
|
-
- Fix the index build with LSI ([#1045](
|
157
|
-
- Don't print deprecation warning when no arguments are specified. ([#1041](
|
158
|
-
- Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032](
|
155
|
+
- Make Redcarpet respect the pygments configuration option ([#1053]({{ site.repository }}/issues/1053))
|
156
|
+
- Fix the index build with LSI ([#1045]({{ site.repository }}/issues/1045))
|
157
|
+
- Don't print deprecation warning when no arguments are specified. ([#1041]({{ site.repository }}/issues/1041))
|
158
|
+
- Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032]({{ site.repository }}/issues/1032))
|
159
159
|
|
160
160
|
### Site Enhancements
|
161
|
-
- Changed https to http in the GitHub Pages link ([#1051](
|
162
|
-
- Remove CSS cruft, fix typos, fix HTML errors ([#1028](
|
163
|
-
- Removing manual install of Pip and Distribute ([#1025](
|
164
|
-
- Updated URL for Markdown references plugin ([#1022](
|
161
|
+
- Changed https to http in the GitHub Pages link ([#1051]({{ site.repository }}/issues/1051))
|
162
|
+
- Remove CSS cruft, fix typos, fix HTML errors ([#1028]({{ site.repository }}/issues/1028))
|
163
|
+
- Removing manual install of Pip and Distribute ([#1025]({{ site.repository }}/issues/1025))
|
164
|
+
- Updated URL for Markdown references plugin ([#1022]({{ site.repository }}/issues/1022))
|
165
165
|
|
166
166
|
### Development Fixes
|
167
|
-
- Markdownify history file ([#1027](
|
168
|
-
- Update links on README to point to new jekyllrb.com ([#1018](
|
167
|
+
- Markdownify history file ([#1027]({{ site.repository }}/issues/1027))
|
168
|
+
- Update links on README to point to new jekyllrb.com ([#1018]({{ site.repository }}/issues/1018))
|
169
169
|
|
170
170
|
## 1.0.0 / 2013-05-06
|
171
171
|
|
172
172
|
### Major Enhancements
|
173
|
-
- Add `jekyll new` subcommand: generate a jekyll scaffold ([#764](
|
174
|
-
- Refactored jekyll commands into subcommands: build, serve, and migrate. ([#690](
|
175
|
-
- Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793](
|
176
|
-
- Added ability to render drafts in `_drafts` folder via command line ([#833](
|
177
|
-
- Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928](
|
173
|
+
- Add `jekyll new` subcommand: generate a jekyll scaffold ([#764]({{ site.repository }}/issues/764))
|
174
|
+
- Refactored jekyll commands into subcommands: build, serve, and migrate. ([#690]({{ site.repository }}/issues/690))
|
175
|
+
- Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793]({{ site.repository }}/issues/793))
|
176
|
+
- Added ability to render drafts in `_drafts` folder via command line ([#833]({{ site.repository }}/issues/833))
|
177
|
+
- Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928]({{ site.repository }}/issues/928))
|
178
178
|
|
179
179
|
### Minor Enhancements
|
180
|
-
- Site template HTML5-ified ([#964](
|
181
|
-
- Use post's directory path when matching for the post_url tag ([#998](
|
182
|
-
- Loosen dependency on Pygments so it's only required when it's needed ([#1015](
|
183
|
-
- Parse strings into Time objects for date-related Liquid filters ([#1014](
|
184
|
-
- Tell the user if there is no subcommand specified ([#1008](
|
185
|
-
- Freak out if the destination of `jekyll new` exists and is non-empty ([#981](
|
186
|
-
- Add `timezone` configuration option for compilation ([#957](
|
187
|
-
- Add deprecation messages for pre-1.0 CLI options ([#959](
|
188
|
-
- Refactor and colorize logging ([#959](
|
189
|
-
- Refactor Markdown parsing ([#955](
|
190
|
-
- Added application/vnd.apple.pkpass to mime.types served by WEBrick ([#907](
|
191
|
-
- Move template site to default markdown renderer ([#961](
|
192
|
-
- Expose new attribute to Liquid via `page`: `page.path` ([#951](
|
193
|
-
- Accept multiple config files from command line ([#945](
|
194
|
-
- Add page variable to liquid custom tags and blocks ([#413](
|
195
|
-
- Add paginator.previous_page_path and paginator.next_page_path ([#942](
|
196
|
-
- Backwards compatibility for 'auto' ([#821](
|
197
|
-
- Added date_to_rfc822 used on RSS feeds ([#892](
|
198
|
-
- Upgrade version of pygments.rb to 0.4.2 ([#927](
|
199
|
-
- Added short month (e.g. "Sep") to permalink style options for posts ([#890](
|
200
|
-
- Expose site.baseurl to Liquid templates ([#869](
|
201
|
-
- Adds excerpt attribute to posts which contains first paragraph of content ([#837](
|
202
|
-
- Accept custom configuration file via CLI ([#863](
|
203
|
-
- Load in GitHub Pages MIME Types on `jekyll serve` ([#847](
|
204
|
-
- Improve debugability of error message for a malformed highlight tag ([#785](
|
205
|
-
- Allow symlinked files in unsafe mode ([#824](
|
206
|
-
- Add 'gist' Liquid tag to core ([#822](
|
207
|
-
- New format of Jekyll output ([#795](
|
208
|
-
- Reinstate --limit_posts and --future switches ([#788](
|
209
|
-
- Remove ambiguity from command descriptions ([#815](
|
210
|
-
- Fix SafeYAML Warnings ([#807](
|
211
|
-
- Relaxed Kramdown version to 0.14 ([#808](
|
212
|
-
- Aliased `jekyll server` to `jekyll serve`. ([#792](
|
213
|
-
- Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. ([#744](
|
214
|
-
- Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them ([#768](
|
215
|
-
- Rescue from import errors in Wordpress.com migrator ([#671](
|
216
|
-
- Massively accelerate LSI performance ([#664](
|
217
|
-
- Truncate post slugs when importing from Tumblr ([#496](
|
218
|
-
- Add glob support to include, exclude option ([#743](
|
219
|
-
- Layout of Page or Post defaults to 'page' or 'post', respectively ([#580](
|
220
|
-
REPEALED by ([#977](
|
221
|
-
- "Keep files" feature ([#685](
|
222
|
-
- Output full path & name for files that don't parse ([#745](
|
223
|
-
- Add source and destination directory protection ([#535](
|
224
|
-
- Better YAML error message ([#718](
|
180
|
+
- Site template HTML5-ified ([#964]({{ site.repository }}/issues/964))
|
181
|
+
- Use post's directory path when matching for the post_url tag ([#998]({{ site.repository }}/issues/998))
|
182
|
+
- Loosen dependency on Pygments so it's only required when it's needed ([#1015]({{ site.repository }}/issues/1015))
|
183
|
+
- Parse strings into Time objects for date-related Liquid filters ([#1014]({{ site.repository }}/issues/1014))
|
184
|
+
- Tell the user if there is no subcommand specified ([#1008]({{ site.repository }}/issues/1008))
|
185
|
+
- Freak out if the destination of `jekyll new` exists and is non-empty ([#981]({{ site.repository }}/issues/981))
|
186
|
+
- Add `timezone` configuration option for compilation ([#957]({{ site.repository }}/issues/957))
|
187
|
+
- Add deprecation messages for pre-1.0 CLI options ([#959]({{ site.repository }}/issues/959))
|
188
|
+
- Refactor and colorize logging ([#959]({{ site.repository }}/issues/959))
|
189
|
+
- Refactor Markdown parsing ([#955]({{ site.repository }}/issues/955))
|
190
|
+
- Added application/vnd.apple.pkpass to mime.types served by WEBrick ([#907]({{ site.repository }}/issues/907))
|
191
|
+
- Move template site to default markdown renderer ([#961]({{ site.repository }}/issues/961))
|
192
|
+
- Expose new attribute to Liquid via `page`: `page.path` ([#951]({{ site.repository }}/issues/951))
|
193
|
+
- Accept multiple config files from command line ([#945]({{ site.repository }}/issues/945))
|
194
|
+
- Add page variable to liquid custom tags and blocks ([#413]({{ site.repository }}/issues/413))
|
195
|
+
- Add paginator.previous_page_path and paginator.next_page_path ([#942]({{ site.repository }}/issues/942))
|
196
|
+
- Backwards compatibility for 'auto' ([#821]({{ site.repository }}/issues/821), [#934]({{ site.repository }}/issues/934))
|
197
|
+
- Added date_to_rfc822 used on RSS feeds ([#892]({{ site.repository }}/issues/892))
|
198
|
+
- Upgrade version of pygments.rb to 0.4.2 ([#927]({{ site.repository }}/issues/927))
|
199
|
+
- Added short month (e.g. "Sep") to permalink style options for posts ([#890]({{ site.repository }}/issues/890))
|
200
|
+
- Expose site.baseurl to Liquid templates ([#869]({{ site.repository }}/issues/869))
|
201
|
+
- Adds excerpt attribute to posts which contains first paragraph of content ([#837]({{ site.repository }}/issues/837))
|
202
|
+
- Accept custom configuration file via CLI ([#863]({{ site.repository }}/issues/863))
|
203
|
+
- Load in GitHub Pages MIME Types on `jekyll serve` ([#847]({{ site.repository }}/issues/847), [#871]({{ site.repository }}/issues/871))
|
204
|
+
- Improve debugability of error message for a malformed highlight tag ([#785]({{ site.repository }}/issues/785))
|
205
|
+
- Allow symlinked files in unsafe mode ([#824]({{ site.repository }}/issues/824))
|
206
|
+
- Add 'gist' Liquid tag to core ([#822]({{ site.repository }}/issues/822), [#861]({{ site.repository }}/issues/861))
|
207
|
+
- New format of Jekyll output ([#795]({{ site.repository }}/issues/795))
|
208
|
+
- Reinstate --limit_posts and --future switches ([#788]({{ site.repository }}/issues/788))
|
209
|
+
- Remove ambiguity from command descriptions ([#815]({{ site.repository }}/issues/815))
|
210
|
+
- Fix SafeYAML Warnings ([#807]({{ site.repository }}/issues/807))
|
211
|
+
- Relaxed Kramdown version to 0.14 ([#808]({{ site.repository }}/issues/808))
|
212
|
+
- Aliased `jekyll server` to `jekyll serve`. ([#792]({{ site.repository }}/issues/792))
|
213
|
+
- Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. ([#744]({{ site.repository }}/issues/744))
|
214
|
+
- Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them ([#768]({{ site.repository }}/issues/768))
|
215
|
+
- Rescue from import errors in Wordpress.com migrator ([#671]({{ site.repository }}/issues/671))
|
216
|
+
- Massively accelerate LSI performance ([#664]({{ site.repository }}/issues/664))
|
217
|
+
- Truncate post slugs when importing from Tumblr ([#496]({{ site.repository }}/issues/496))
|
218
|
+
- Add glob support to include, exclude option ([#743]({{ site.repository }}/issues/743))
|
219
|
+
- Layout of Page or Post defaults to 'page' or 'post', respectively ([#580]({{ site.repository }}/issues/580))
|
220
|
+
REPEALED by ([#977]({{ site.repository }}/issues/977))
|
221
|
+
- "Keep files" feature ([#685]({{ site.repository }}/issues/685))
|
222
|
+
- Output full path & name for files that don't parse ([#745]({{ site.repository }}/issues/745))
|
223
|
+
- Add source and destination directory protection ([#535]({{ site.repository }}/issues/535))
|
224
|
+
- Better YAML error message ([#718]({{ site.repository }}/issues/718))
|
225
225
|
- Bug Fixes
|
226
|
-
- Paginate in subdirectories properly ([#1016](
|
227
|
-
- Ensure post and page URLs have a leading slash ([#992](
|
228
|
-
- Catch all exceptions, not just StandardError descendents ([#1007](
|
229
|
-
- Bullet-proof limit_posts option ([#1004](
|
230
|
-
- Read in YAML as UTF-8 to accept non-ASCII chars ([#836](
|
231
|
-
- Fix the CLI option --plugins to actually accept dirs and files ([#993](
|
232
|
-
- Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt ([#946](
|
233
|
-
- Fix cascade problem with site.baseurl, site.port and site.host. ([#935](
|
234
|
-
- Filter out directories with valid post names ([#875](
|
235
|
-
- Fix symlinked static files not being correctly built in unsafe mode ([#909](
|
236
|
-
- Fix integration with directory_watcher 1.4.x ([#916](
|
237
|
-
- Accepting strings as arguments to jekyll-import command ([#910](
|
238
|
-
- Force usage of older directory_watcher gem as 1.5 is broken ([#883](
|
239
|
-
- Ensure all Post categories are downcase ([#842](
|
240
|
-
- Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors ([#555](
|
241
|
-
- Patch for multibyte URI problem with jekyll serve ([#723](
|
242
|
-
- Order plugin execution by priority ([#864](
|
243
|
-
- Fixed Page#dir and Page#url for edge cases ([#536](
|
244
|
-
- Fix broken post_url with posts with a time in their YAML Front-Matter ([#831](
|
245
|
-
- Look for plugins under the source directory ([#654](
|
226
|
+
- Paginate in subdirectories properly ([#1016]({{ site.repository }}/issues/1016))
|
227
|
+
- Ensure post and page URLs have a leading slash ([#992]({{ site.repository }}/issues/992))
|
228
|
+
- Catch all exceptions, not just StandardError descendents ([#1007]({{ site.repository }}/issues/1007))
|
229
|
+
- Bullet-proof limit_posts option ([#1004]({{ site.repository }}/issues/1004))
|
230
|
+
- Read in YAML as UTF-8 to accept non-ASCII chars ([#836]({{ site.repository }}/issues/836))
|
231
|
+
- Fix the CLI option --plugins to actually accept dirs and files ([#993]({{ site.repository }}/issues/993))
|
232
|
+
- Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt ([#946]({{ site.repository }}/issues/946))
|
233
|
+
- Fix cascade problem with site.baseurl, site.port and site.host. ([#935]({{ site.repository }}/issues/935))
|
234
|
+
- Filter out directories with valid post names ([#875]({{ site.repository }}/issues/875))
|
235
|
+
- Fix symlinked static files not being correctly built in unsafe mode ([#909]({{ site.repository }}/issues/909))
|
236
|
+
- Fix integration with directory_watcher 1.4.x ([#916]({{ site.repository }}/issues/916))
|
237
|
+
- Accepting strings as arguments to jekyll-import command ([#910]({{ site.repository }}/issues/910))
|
238
|
+
- Force usage of older directory_watcher gem as 1.5 is broken ([#883]({{ site.repository }}/issues/883))
|
239
|
+
- Ensure all Post categories are downcase ([#842]({{ site.repository }}/issues/842), [#872]({{ site.repository }}/issues/872))
|
240
|
+
- Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors ([#555]({{ site.repository }}/issues/555))
|
241
|
+
- Patch for multibyte URI problem with jekyll serve ([#723]({{ site.repository }}/issues/723))
|
242
|
+
- Order plugin execution by priority ([#864]({{ site.repository }}/issues/864))
|
243
|
+
- Fixed Page#dir and Page#url for edge cases ([#536]({{ site.repository }}/issues/536))
|
244
|
+
- Fix broken post_url with posts with a time in their YAML Front-Matter ([#831]({{ site.repository }}/issues/831))
|
245
|
+
- Look for plugins under the source directory ([#654]({{ site.repository }}/issues/654))
|
246
246
|
- Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long
|
247
|
-
post names ([#775](
|
248
|
-
- Force Categories to be Strings ([#767](
|
249
|
-
- Safe YAML plugin to prevent vulnerability ([#777](
|
250
|
-
- Add SVG support to Jekyll/WEBrick. ([#407](
|
251
|
-
- Prevent custom destination from causing continuous regen on watch ([#528](
|
247
|
+
post names ([#775]({{ site.repository }}/issues/775))
|
248
|
+
- Force Categories to be Strings ([#767]({{ site.repository }}/issues/767))
|
249
|
+
- Safe YAML plugin to prevent vulnerability ([#777]({{ site.repository }}/issues/777))
|
250
|
+
- Add SVG support to Jekyll/WEBrick. ([#407]({{ site.repository }}/issues/407), [#406]({{ site.repository }}/issues/406))
|
251
|
+
- Prevent custom destination from causing continuous regen on watch ([#528]({{ site.repository }}/issues/528), [#820]({{ site.repository }}/issues/820), [#862]({{ site.repository }}/issues/862))
|
252
252
|
|
253
253
|
### Site Enhancements
|
254
|
-
- Responsify ([#860](
|
255
|
-
- Fix spelling, punctuation and phrasal errors ([#989](
|
256
|
-
- Update quickstart instructions with `new` command ([#966](
|
257
|
-
- Add docs for page.excerpt ([#956](
|
258
|
-
- Add docs for page.path ([#951](
|
259
|
-
- Clean up site docs to prepare for 1.0 release ([#918](
|
260
|
-
- Bring site into master branch with better preview/deploy ([#709](
|
261
|
-
- Redesigned site ([#583](
|
254
|
+
- Responsify ([#860]({{ site.repository }}/issues/860))
|
255
|
+
- Fix spelling, punctuation and phrasal errors ([#989]({{ site.repository }}/issues/989))
|
256
|
+
- Update quickstart instructions with `new` command ([#966]({{ site.repository }}/issues/966))
|
257
|
+
- Add docs for page.excerpt ([#956]({{ site.repository }}/issues/956))
|
258
|
+
- Add docs for page.path ([#951]({{ site.repository }}/issues/951))
|
259
|
+
- Clean up site docs to prepare for 1.0 release ([#918]({{ site.repository }}/issues/918))
|
260
|
+
- Bring site into master branch with better preview/deploy ([#709]({{ site.repository }}/issues/709))
|
261
|
+
- Redesigned site ([#583]({{ site.repository }}/issues/583))
|
262
262
|
|
263
263
|
### Development Fixes
|
264
|
-
- Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938](
|
264
|
+
- Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938]({{ site.repository }}/issues/938))
|
265
265
|
- Added "features:html" rake task for debugging purposes, cleaned up
|
266
|
-
cucumber profiles ([#832](
|
267
|
-
- Explicitly require HTTPS rubygems source in Gemfile ([#826](
|
268
|
-
- Changed Ruby version for development to 1.9.3-p374 from p362 ([#801](
|
269
|
-
- Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806](
|
270
|
-
- Added script/bootstrap ([#776](
|
266
|
+
cucumber profiles ([#832]({{ site.repository }}/issues/832))
|
267
|
+
- Explicitly require HTTPS rubygems source in Gemfile ([#826]({{ site.repository }}/issues/826))
|
268
|
+
- Changed Ruby version for development to 1.9.3-p374 from p362 ([#801]({{ site.repository }}/issues/801))
|
269
|
+
- Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806]({{ site.repository }}/issues/806))
|
270
|
+
- Added script/bootstrap ([#776]({{ site.repository }}/issues/776))
|
271
271
|
- Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
|
272
|
-
of greater than 1.9 ([#771](
|
273
|
-
- Switch to Simplecov for coverage report ([#765](
|
272
|
+
of greater than 1.9 ([#771]({{ site.repository }}/issues/771))
|
273
|
+
- Switch to Simplecov for coverage report ([#765]({{ site.repository }}/issues/765))
|
274
274
|
|
275
275
|
## 0.12.1 / 2013-02-19
|
276
276
|
### Minor Enhancements
|
277
|
-
- Update Kramdown version to 0.14.1 ([#744](
|
277
|
+
- Update Kramdown version to 0.14.1 ([#744]({{ site.repository }}/issues/744))
|
278
278
|
- Test Enhancements
|
279
|
-
- Update Rake version to 10.0.3 ([#744](
|
280
|
-
- Update Shoulda version to 3.3.2 ([#744](
|
281
|
-
- Update Redcarpet version to 2.2.2 ([#744](
|
279
|
+
- Update Rake version to 10.0.3 ([#744]({{ site.repository }}/issues/744))
|
280
|
+
- Update Shoulda version to 3.3.2 ([#744]({{ site.repository }}/issues/744))
|
281
|
+
- Update Redcarpet version to 2.2.2 ([#744]({{ site.repository }}/issues/744))
|
282
282
|
|
283
283
|
## 0.12.0 / 2012-12-22
|
284
284
|
### Minor Enhancements
|
285
|
-
- Add ability to explicitly specify included files ([#261](
|
286
|
-
- Add --default-mimetype option ([#279](
|
287
|
-
- Allow setting of RedCloth options ([#284](
|
288
|
-
- Add post_url Liquid tag for internal post linking ([#369](
|
289
|
-
- Allow multiple plugin dirs to be specified ([#438](
|
290
|
-
- Inline TOC token support for RDiscount ([#333](
|
291
|
-
- Add the option to specify the paginated url format ([#342](
|
292
|
-
- Swap out albino for pygments.rb ([#569](
|
293
|
-
- Support Redcarpet 2 and fenced code blocks ([#619](
|
294
|
-
- Better reporting of Liquid errors ([#624](
|
285
|
+
- Add ability to explicitly specify included files ([#261]({{ site.repository }}/issues/261))
|
286
|
+
- Add --default-mimetype option ([#279]({{ site.repository }}/issues/279))
|
287
|
+
- Allow setting of RedCloth options ([#284]({{ site.repository }}/issues/284))
|
288
|
+
- Add post_url Liquid tag for internal post linking ([#369]({{ site.repository }}/issues/369))
|
289
|
+
- Allow multiple plugin dirs to be specified ([#438]({{ site.repository }}/issues/438))
|
290
|
+
- Inline TOC token support for RDiscount ([#333]({{ site.repository }}/issues/333))
|
291
|
+
- Add the option to specify the paginated url format ([#342]({{ site.repository }}/issues/342))
|
292
|
+
- Swap out albino for pygments.rb ([#569]({{ site.repository }}/issues/569))
|
293
|
+
- Support Redcarpet 2 and fenced code blocks ([#619]({{ site.repository }}/issues/619))
|
294
|
+
- Better reporting of Liquid errors ([#624]({{ site.repository }}/issues/624))
|
295
295
|
- Bug Fixes
|
296
296
|
- Allow some special characters in highlight names
|
297
|
-
- URL escape category names in URL generation ([#360](
|
298
|
-
- Fix error with limit_posts ([#442](
|
299
|
-
- Properly select dotfile during directory scan ([#363](
|
300
|
-
- Allow setting of Kramdown smart_quotes ([#482](
|
301
|
-
- Ensure front-matter is at start of file ([#562](
|
297
|
+
- URL escape category names in URL generation ([#360]({{ site.repository }}/issues/360))
|
298
|
+
- Fix error with limit_posts ([#442]({{ site.repository }}/issues/442))
|
299
|
+
- Properly select dotfile during directory scan ([#363]({{ site.repository }}/issues/363), [#431]({{ site.repository }}/issues/431), [#377]({{ site.repository }}/issues/377))
|
300
|
+
- Allow setting of Kramdown smart_quotes ([#482]({{ site.repository }}/issues/482))
|
301
|
+
- Ensure front-matter is at start of file ([#562]({{ site.repository }}/issues/562))
|
302
302
|
|
303
303
|
## 0.11.2 / 2011-12-27
|
304
304
|
- Bug Fixes
|
@@ -306,26 +306,26 @@ prev_section: contributing
|
|
306
306
|
|
307
307
|
## 0.11.1 / 2011-12-27
|
308
308
|
- Bug Fixes
|
309
|
-
- Fix extra blank line in highlight blocks ([#409](
|
309
|
+
- Fix extra blank line in highlight blocks ([#409]({{ site.repository }}/issues/409))
|
310
310
|
- Update dependencies
|
311
311
|
|
312
312
|
## 0.11.0 / 2011-07-10
|
313
313
|
### Major Enhancements
|
314
|
-
- Add command line importer functionality ([#253](
|
315
|
-
- Add Redcarpet Markdown support ([#318](
|
316
|
-
- Make markdown/textile extensions configurable ([#312](
|
314
|
+
- Add command line importer functionality ([#253]({{ site.repository }}/issues/253))
|
315
|
+
- Add Redcarpet Markdown support ([#318]({{ site.repository }}/issues/318))
|
316
|
+
- Make markdown/textile extensions configurable ([#312]({{ site.repository }}/issues/312))
|
317
317
|
- Add `markdownify` filter
|
318
318
|
|
319
319
|
### Minor Enhancements
|
320
320
|
- Switch to Albino gem
|
321
321
|
- Bundler support
|
322
|
-
- Use English library to avoid hoops ([#292](
|
323
|
-
- Add Posterous importer ([#254](
|
324
|
-
- Fixes for Wordpress importer ([#274](
|
325
|
-
- Better error message for invalid post date ([#291](
|
322
|
+
- Use English library to avoid hoops ([#292]({{ site.repository }}/issues/292))
|
323
|
+
- Add Posterous importer ([#254]({{ site.repository }}/issues/254))
|
324
|
+
- Fixes for Wordpress importer ([#274]({{ site.repository }}/issues/274), [#252]({{ site.repository }}/issues/252), [#271]({{ site.repository }}/issues/271))
|
325
|
+
- Better error message for invalid post date ([#291]({{ site.repository }}/issues/291))
|
326
326
|
- Print formatted fatal exceptions to stdout on build failure
|
327
|
-
- Add Tumblr importer ([#323](
|
328
|
-
- Add Enki importer ([#320](
|
327
|
+
- Add Tumblr importer ([#323]({{ site.repository }}/issues/323))
|
328
|
+
- Add Enki importer ([#320]({{ site.repository }}/issues/320))
|
329
329
|
- Bug Fixes
|
330
330
|
- Secure additional path exploits
|
331
331
|
|
@@ -336,75 +336,75 @@ prev_section: contributing
|
|
336
336
|
## 0.9.0 / 2010-12-15
|
337
337
|
### Minor Enhancements
|
338
338
|
- Use OptionParser's `[no-]` functionality for better boolean parsing.
|
339
|
-
- Add Drupal migrator ([#245](
|
340
|
-
- Complain about YAML and Liquid errors ([#249](
|
341
|
-
- Remove orphaned files during regeneration ([#247](
|
342
|
-
- Add Marley migrator ([#28](
|
339
|
+
- Add Drupal migrator ([#245]({{ site.repository }}/issues/245))
|
340
|
+
- Complain about YAML and Liquid errors ([#249]({{ site.repository }}/issues/249))
|
341
|
+
- Remove orphaned files during regeneration ([#247]({{ site.repository }}/issues/247))
|
342
|
+
- Add Marley migrator ([#28]({{ site.repository }}/issues/28))
|
343
343
|
|
344
344
|
## 0.8.0 / 2010-11-22
|
345
345
|
### Minor Enhancements
|
346
|
-
- Add wordpress.com importer ([#207](
|
347
|
-
- Add --limit-posts cli option ([#212](
|
348
|
-
- Add uri_escape filter ([#234](
|
349
|
-
- Add --base-url cli option ([#235](
|
350
|
-
- Improve MT migrator ([#238](
|
351
|
-
- Add kramdown support ([#239](
|
346
|
+
- Add wordpress.com importer ([#207]({{ site.repository }}/issues/207))
|
347
|
+
- Add --limit-posts cli option ([#212]({{ site.repository }}/issues/212))
|
348
|
+
- Add uri_escape filter ([#234]({{ site.repository }}/issues/234))
|
349
|
+
- Add --base-url cli option ([#235]({{ site.repository }}/issues/235))
|
350
|
+
- Improve MT migrator ([#238]({{ site.repository }}/issues/238))
|
351
|
+
- Add kramdown support ([#239]({{ site.repository }}/issues/239))
|
352
352
|
- Bug Fixes
|
353
|
-
- Fixed filename basename generation ([#208](
|
354
|
-
- Set mode to UTF8 on Sequel connections ([#237](
|
353
|
+
- Fixed filename basename generation ([#208]({{ site.repository }}/issues/208))
|
354
|
+
- Set mode to UTF8 on Sequel connections ([#237]({{ site.repository }}/issues/237))
|
355
355
|
- Prevent `_includes` dir from being a symlink
|
356
356
|
|
357
357
|
## 0.7.0 / 2010-08-24
|
358
358
|
### Minor Enhancements
|
359
|
-
- Add support for rdiscount extensions ([#173](
|
359
|
+
- Add support for rdiscount extensions ([#173]({{ site.repository }}/issues/173))
|
360
360
|
- Bug Fixes
|
361
361
|
- Highlight should not be able to render local files
|
362
|
-
- The site configuration may not always provide a 'time' setting ([#184](
|
362
|
+
- The site configuration may not always provide a 'time' setting ([#184]({{ site.repository }}/issues/184))
|
363
363
|
|
364
364
|
## 0.6.2 / 2010-06-25
|
365
365
|
- Bug Fixes
|
366
366
|
- Fix Rakefile 'release' task (tag pushing was missing origin)
|
367
|
-
- Ensure that RedCloth is loaded when textilize filter is used ([#183](
|
368
|
-
- Expand source, destination, and plugin paths ([#180](
|
369
|
-
- Fix page.url to include full relative path ([#181](
|
367
|
+
- Ensure that RedCloth is loaded when textilize filter is used ([#183]({{ site.repository }}/issues/183))
|
368
|
+
- Expand source, destination, and plugin paths ([#180]({{ site.repository }}/issues/180))
|
369
|
+
- Fix page.url to include full relative path ([#181]({{ site.repository }}/issues/181))
|
370
370
|
|
371
371
|
## 0.6.1 / 2010-06-24
|
372
372
|
- Bug Fixes
|
373
|
-
- Fix Markdown Pygments prefix and suffix ([#178](
|
373
|
+
- Fix Markdown Pygments prefix and suffix ([#178]({{ site.repository }}/issues/178))
|
374
374
|
|
375
375
|
## 0.6.0 / 2010-06-23
|
376
376
|
### Major Enhancements
|
377
|
-
- Proper plugin system ([#19](
|
377
|
+
- Proper plugin system ([#19]({{ site.repository }}/issues/19), [#100]({{ site.repository }}/issues/100))
|
378
378
|
- Add safe mode so unsafe converters/generators can be added
|
379
379
|
- Maruku is now the only processor dependency installed by default.
|
380
380
|
Other processors will be lazy-loaded when necessary (and prompt the
|
381
|
-
user to install them when necessary) ([#57](
|
381
|
+
user to install them when necessary) ([#57]({{ site.repository }}/issues/57))
|
382
382
|
|
383
383
|
### Minor Enhancements
|
384
|
-
- Inclusion/exclusion of future dated posts ([#59](
|
385
|
-
- Generation for a specific time ([#59](
|
386
|
-
- Allocate site.time on render not per site_payload invocation ([#59](
|
384
|
+
- Inclusion/exclusion of future dated posts ([#59]({{ site.repository }}/issues/59))
|
385
|
+
- Generation for a specific time ([#59]({{ site.repository }}/issues/59))
|
386
|
+
- Allocate site.time on render not per site_payload invocation ([#59]({{ site.repository }}/issues/59))
|
387
387
|
- Pages now present in the site payload and can be used through the
|
388
388
|
site.pages and site.html_pages variables
|
389
389
|
- Generate phase added to site#process and pagination is now a generator
|
390
390
|
- Switch to RakeGem for build/test process
|
391
|
-
- Only regenerate static files when they have changed ([#142](
|
392
|
-
- Allow arbitrary options to Pygments ([#31](
|
393
|
-
- Allow URL to be set via command line option ([#147](
|
391
|
+
- Only regenerate static files when they have changed ([#142]({{ site.repository }}/issues/142))
|
392
|
+
- Allow arbitrary options to Pygments ([#31]({{ site.repository }}/issues/31))
|
393
|
+
- Allow URL to be set via command line option ([#147]({{ site.repository }}/issues/147))
|
394
394
|
- Bug Fixes
|
395
|
-
- Render highlighted code for non markdown/textile pages ([#116](
|
396
|
-
- Fix highlighting on Ruby 1.9 ([#65](
|
397
|
-
- Fix extension munging when pretty permalinks are enabled ([#64](
|
398
|
-
- Stop sorting categories ([#33](
|
399
|
-
- Preserve generated attributes over front matter ([#119](
|
400
|
-
- Fix source directory binding using Dir.pwd ([#75](
|
395
|
+
- Render highlighted code for non markdown/textile pages ([#116]({{ site.repository }}/issues/116))
|
396
|
+
- Fix highlighting on Ruby 1.9 ([#65]({{ site.repository }}/issues/65))
|
397
|
+
- Fix extension munging when pretty permalinks are enabled ([#64]({{ site.repository }}/issues/64))
|
398
|
+
- Stop sorting categories ([#33]({{ site.repository }}/issues/33))
|
399
|
+
- Preserve generated attributes over front matter ([#119]({{ site.repository }}/issues/119))
|
400
|
+
- Fix source directory binding using Dir.pwd ([#75]({{ site.repository }}/issues/75))
|
401
401
|
|
402
402
|
## 0.5.7 / 2010-01-12
|
403
403
|
### Minor Enhancements
|
404
|
-
- Allow overriding of post date in the front matter ([#62](
|
404
|
+
- Allow overriding of post date in the front matter ([#62]({{ site.repository }}/issues/62), [#38]({{ site.repository }}/issues/38))
|
405
405
|
- Bug Fixes
|
406
|
-
- Categories isn't always an array ([#73](
|
407
|
-
- Empty tags causes error in read_posts ([#84](
|
406
|
+
- Categories isn't always an array ([#73]({{ site.repository }}/issues/73))
|
407
|
+
- Empty tags causes error in read_posts ([#84]({{ site.repository }}/issues/84))
|
408
408
|
- Fix pagination to adhere to read/render/write paradigm
|
409
409
|
- Test Enhancement
|
410
410
|
- cucumber features no longer use site.posts.first where a better
|
@@ -412,19 +412,19 @@ prev_section: contributing
|
|
412
412
|
|
413
413
|
## 0.5.6 / 2010-01-08
|
414
414
|
- Bug Fixes
|
415
|
-
- Require redcloth >= 4.2.1 in tests ([#92](
|
416
|
-
- Don't break on triple dashes in yaml frontmatter ([#93](
|
415
|
+
- Require redcloth >= 4.2.1 in tests ([#92]({{ site.repository }}/issues/92))
|
416
|
+
- Don't break on triple dashes in yaml frontmatter ([#93]({{ site.repository }}/issues/93))
|
417
417
|
|
418
418
|
### Minor Enhancements
|
419
419
|
- Allow .mkd as markdown extension
|
420
|
-
- Use $stdout/err instead of constants ([#99](
|
421
|
-
- Properly wrap code blocks ([#91](
|
422
|
-
- Add javascript mime type for webrick ([#98](
|
420
|
+
- Use $stdout/err instead of constants ([#99]({{ site.repository }}/issues/99))
|
421
|
+
- Properly wrap code blocks ([#91]({{ site.repository }}/issues/91))
|
422
|
+
- Add javascript mime type for webrick ([#98]({{ site.repository }}/issues/98))
|
423
423
|
|
424
424
|
## 0.5.5 / 2010-01-08
|
425
425
|
- Bug Fixes
|
426
|
-
- Fix pagination % 0 bug ([#78](
|
427
|
-
- Ensure all posts are processed first ([#71](
|
426
|
+
- Fix pagination % 0 bug ([#78]({{ site.repository }}/issues/78))
|
427
|
+
- Ensure all posts are processed first ([#71]({{ site.repository }}/issues/71))
|
428
428
|
|
429
429
|
## NOTE
|
430
430
|
- After this point I will no longer be giving credit in the history;
|