jekyll-docs 3.0.3 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/site/_config.yml +4 -0
- data/site/_data/docs.yml +3 -1
- data/site/_docs/assets.md +4 -3
- data/site/_docs/conduct.md +55 -0
- data/site/_docs/configuration.md +77 -7
- data/site/_docs/contributing.md +1 -1
- data/site/_docs/datafiles.md +3 -3
- data/site/_docs/deployment-methods.md +49 -28
- data/site/_docs/extras.md +1 -1
- data/site/_docs/github-pages.md +27 -28
- data/site/_docs/history.md +356 -196
- data/site/_docs/index.md +1 -0
- data/site/_docs/installation.md +4 -4
- data/site/_docs/pages.md +20 -4
- data/site/_docs/pagination.md +7 -4
- data/site/_docs/permalinks.md +4 -3
- data/site/_docs/plugins.md +20 -8
- data/site/_docs/posts.md +8 -8
- data/site/_docs/quickstart.md +1 -2
- data/site/_docs/resources.md +16 -24
- data/site/_docs/sites.md +1 -7
- data/site/_docs/structure.md +3 -3
- data/site/_docs/templates.md +39 -13
- data/site/_docs/upgrading.md +3 -133
- data/site/_docs/upgrading/0-to-2.md +140 -0
- data/site/_docs/upgrading/2-to-3.md +126 -0
- data/site/_docs/variables.md +1 -1
- data/site/_docs/windows.md +5 -3
- data/site/_includes/docs_ul.html +2 -6
- data/site/_includes/footer.html +1 -1
- data/site/_posts/2015-10-26-jekyll-3-0-released.markdown +1 -1
- data/site/_posts/2016-01-20-jekyll-3-0-2-released.markdown +5 -0
- data/site/_posts/2016-01-24-jekyll-3-1-0-released.markdown +50 -0
- data/site/_posts/2016-01-28-jekyll-3-1-1-released.markdown +33 -0
- data/site/_posts/2016-02-08-jekyll-3-0-3-released.markdown +4 -3
- data/site/_posts/2016-02-19-jekyll-3-1-2-released.markdown +20 -0
- data/site/_sass/_style.scss +4 -0
- data/site/help/index.md +5 -0
- data/site/index.html +2 -2
- data/site/latest_version.txt +1 -1
- data/site/redirects/github.html +4 -0
- data/site/redirects/issues.html +4 -0
- metadata +11 -3
data/site/_includes/footer.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
<footer role="contentinfo">
|
2
2
|
<div class="grid">
|
3
3
|
<div class="unit one-third center-on-mobiles">
|
4
|
-
<p>The contents of this website are
|
4
|
+
<p>The contents of this website are <br />© {{ site.time | date: '%Y' }} under the terms of the <a href="{{ site.repository }}/blob/master/LICENSE">MIT License</a>.</p>
|
5
5
|
</div>
|
6
6
|
<div class="unit two-thirds align-right center-on-mobiles">
|
7
7
|
<p>
|
@@ -22,7 +22,7 @@ The much-anticipated Jekyll 3.0 has been released! Key changes:
|
|
22
22
|
- Lots of performance improvements
|
23
23
|
- ... and lots more!
|
24
24
|
|
25
|
-
We also added a [Code of Conduct](
|
25
|
+
We also added a [Code of Conduct](/docs/conduct/) to encourage a happier, nicer community where contributions and discussion is protected from negative behaviour.
|
26
26
|
|
27
27
|
A huge shout-out to the amazing Jekyll Core Team members Jordon Bedwell, Alfred Xing, and Matt Rogers for all their hard work in making Jekyll 3 the best release yet.
|
28
28
|
|
@@ -12,3 +12,8 @@ unnoticed in the build chain until the error that popped up was unhelpful.
|
|
12
12
|
v3.0.2 [throws errors as you'd expect](https://github.com/jekyll/jekyll/issues/4375)
|
13
13
|
when there is a post like `_posts/2016-22-01-future.md` or a post has an
|
14
14
|
invalid date like `date: "tuesday"` in their front matter.
|
15
|
+
|
16
|
+
This should make the experience of working with Jekyll just a little
|
17
|
+
better.
|
18
|
+
|
19
|
+
Happy Jekylling!
|
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: 'Jekyll 3.1.0 Released'
|
4
|
+
date: 2016-01-24 13:16:12 -0800
|
5
|
+
author: parkr
|
6
|
+
version: 3.1.0
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
Happy weekend! To make your weekend all the better, we have just released
|
11
|
+
v3.1.0 of Jekyll.
|
12
|
+
|
13
|
+
There are _lots_ of great performance improvements, including a huge one
|
14
|
+
which is to use Liquid drops instead of hashes. Much of the slowness in
|
15
|
+
Jekyll is due to Jekyll making lots of objects it doesn't need to make.
|
16
|
+
By making these objects only as they're needed, we can speed up Jekyll
|
17
|
+
considerably!
|
18
|
+
|
19
|
+
Some other highlights:
|
20
|
+
|
21
|
+
* Fix: `permalink`s with non-HTML extensions will not be honored
|
22
|
+
* Fix: `jekyll clean` now accepts build flags like `--source`.
|
23
|
+
* Enhancement: `include` tags can now accept multiple liquid variables
|
24
|
+
* Feature: adds new `sample` liquid tag which gets random element from an array
|
25
|
+
* Fix: Jekyll will read in files with YAML front matter that has extraneous
|
26
|
+
spaces after the first line
|
27
|
+
* Enhancement: extract the `title` attribute from the filename for
|
28
|
+
collection items without a date
|
29
|
+
* Fix: gracefully handle empty configuration files
|
30
|
+
|
31
|
+
... and [a whole bunch more](/docs/history/#v3-1-0)!
|
32
|
+
|
33
|
+
Please [file a bug]({{ site.repository }}/issues/new?title=Jekyll+3.1.0+Issue:)
|
34
|
+
if you encounter any issues! As always, [Jekyll Talk](https://talk.jekyllrb.com)
|
35
|
+
is the best place to get help if you're encountering a problem.
|
36
|
+
|
37
|
+
Special thanks to all our amazing contributors who helped make v3.1.0 a
|
38
|
+
possibility:
|
39
|
+
|
40
|
+
Alex J Best, Alexander Köplinger, Alfred Xing, Alistair Calder, Atul
|
41
|
+
Bhosale, Ben Orenstein, Chi Trung Nguyen, Conor O'Callaghan, Craig P.
|
42
|
+
Motlin, Dan K, David Burela, David Litvak Bruno, Decider UI, Ducksan Cho,
|
43
|
+
Florian Thomas, James Wen, Jordon Bedwell, Joseph Wynn, Kakoma, Liam
|
44
|
+
Bowers, Mike Neumegen, Nick Quaranto, Nielsen Ramon, Olivér Falvai, Pat
|
45
|
+
Hawks, Paul Robert Lloyd, Pedro Euko, Peter Suschlik, Sam Volin, Samuel
|
46
|
+
Wright, Sasha Friedenberg, Tim Cuthbertson, Vincent Wochnik, William
|
47
|
+
Entriken, Zshawn Syed, chrisfinazzo, ducksan cho, leethomas,
|
48
|
+
midnightSuyama, musoke, and rebornix
|
49
|
+
|
50
|
+
Happy Jekylling!
|
@@ -0,0 +1,33 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: 'Jekyll 3.1.1 Released'
|
4
|
+
date: 2016-01-28 17:21:50 -0800
|
5
|
+
author: parkr
|
6
|
+
version: 3.1.1
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
This release squashes a few bugs :bug: :bug: :bug: noticed by a few
|
11
|
+
wonderful Jekyll users:
|
12
|
+
|
13
|
+
* If your `permalink` ended with a `/`, your URL didn't have any extension,
|
14
|
+
even if you wanted one
|
15
|
+
* We now strip the BOM by default per Ruby's `IO.open`.
|
16
|
+
* `page.dir` will not always end in a slash.
|
17
|
+
|
18
|
+
We also updated our [Code of Conduct](/docs/conduct/) to the latest version of
|
19
|
+
the Contributor Covenant. The update includes language to ensure that the
|
20
|
+
reporter of the incident remains confidential to non-maintainers and that
|
21
|
+
all complaints will result in an appropriate response. I care deeply about
|
22
|
+
Jekyll's community and will do everything in my power to ensure it is a
|
23
|
+
welcoming community. Feel free to reach out to me directly if you feel
|
24
|
+
there is a way we can improve the community for everyone! If you're
|
25
|
+
interested in more details, [there is a diff for
|
26
|
+
that](https://github.com/ContributorCovenant/contributor_covenant/blob/v1_4/diffs/1_3_vs_1_4.patch).
|
27
|
+
|
28
|
+
See links to the PR's on [the history page](/docs/history/#v3-1-1).
|
29
|
+
|
30
|
+
Thanks to Jordon Bedwell, chrisfinazzo, Kroum Tzanev, David Celis, and
|
31
|
+
Alfred Xing for their commits on this latest release! :sparkles:
|
32
|
+
|
33
|
+
Happy Jekylling!
|
@@ -7,9 +7,10 @@ version: 3.0.3
|
|
7
7
|
categories: [release]
|
8
8
|
---
|
9
9
|
|
10
|
-
[GitHub Pages upgraded to Jekyll 3.0.2][1] last week
|
11
|
-
|
12
|
-
|
10
|
+
[GitHub Pages upgraded to Jekyll 3.0.2][1] last week. With a testbed of
|
11
|
+
over a million sites, this really put Jekyll 3 through the wringer. This
|
12
|
+
release addresses a handful of bugs that were surfaced as a result. The
|
13
|
+
fixes:
|
13
14
|
|
14
15
|
* Fix problem where outputting to a folder would have two extensions
|
15
16
|
* Handle tildes (`~`) in filenames properly
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: 'Jekyll 3.1.2 Released!'
|
4
|
+
date: 2016-02-19 15:24:00 -0800
|
5
|
+
author: parkr
|
6
|
+
version: 3.1.2
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
Happy Friday from sunny California! Today, we're excited to announce the release of Jekyll v3.1.2, which comes with some crucial bug fixes:
|
11
|
+
|
12
|
+
* If a syntax error is encountered by Liquid, it will now print the line number.
|
13
|
+
* A nasty war between symbols and strings in our configuration hash caused kramdown syntax highlighting to break. That has been resolved; you stand victorious!
|
14
|
+
* A tilde at the beginning of a filename will no longer crash Jekyll.
|
15
|
+
* The `titleize` filter mistakenly dropped words that were already capitalized. Fixed!
|
16
|
+
* Permalinks which end in a slash will now always output as a folder with an `index.html` inside.
|
17
|
+
|
18
|
+
Nitty-gritty details, like always, are available in the [history](/docs/history/).
|
19
|
+
|
20
|
+
Thanks to those who contributed to this release: Alfred Xing, atomicules, bojanland, Brenton Horne, Carlos Garcés, Cash Costello, Chris, chrisfinazzo, Daniel Schildt, Dean Attali, Florian Thomas, Jordon Bedwell, Juuso Mikkonen, Katya Demidova, lonnen, Manabu Sakai, Michael Lee, Michael Lyons, Mitesh Shah, Nicolas Hoizey, Parker Moore, Pat Hawks, Prayag Verma, Robert Martin, Suriyaa Kudo, and toshi.
|
data/site/_sass/_style.scss
CHANGED
@@ -643,10 +643,14 @@ p > pre,
|
|
643
643
|
p > code,
|
644
644
|
p > nobr > code,
|
645
645
|
li > code,
|
646
|
+
li> pre,
|
646
647
|
h5 > code,
|
647
648
|
.note > code {
|
648
649
|
background-color: #2b2b2b;
|
649
650
|
color: #fff;
|
651
|
+
max-width: 100%;
|
652
|
+
overflow-x: auto;
|
653
|
+
vertical-align: middle;
|
650
654
|
@include border-radius(5px);
|
651
655
|
@include box-shadow(inset 0 1px 10px rgba(0,0,0,.3),
|
652
656
|
0 1px 0 rgba(255,255,255,.1),
|
data/site/help/index.md
CHANGED
@@ -5,6 +5,11 @@ title: Getting Help
|
|
5
5
|
|
6
6
|
Need help with Jekyll? Try these resources.
|
7
7
|
|
8
|
+
### [Upgrading Documentation](/docs/upgrading/)
|
9
|
+
|
10
|
+
Did you recently upgrade from Jekyll 1 to 2 or from Jekyll 2 to 3?
|
11
|
+
Known breaking changes are listed in the upgrading docs.
|
12
|
+
|
8
13
|
### [Google](https://google.com)
|
9
14
|
|
10
15
|
Add **jekyll** to almost any query, and you'll find just what you need.
|
data/site/index.html
CHANGED
@@ -30,7 +30,7 @@ overview: true
|
|
30
30
|
<p>
|
31
31
|
Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.
|
32
32
|
</p>
|
33
|
-
<a href="
|
33
|
+
<a href="http://import.jekyllrb.com">Migrate your blog →</a>
|
34
34
|
</div>
|
35
35
|
<div class="clear"></div>
|
36
36
|
</div>
|
@@ -79,7 +79,7 @@ overview: true
|
|
79
79
|
<img src="img/octojekyll.png" width="300" height="251" alt="Free Jekyll hosting on GitHub Pages">
|
80
80
|
<div class="pane-content">
|
81
81
|
<h2 class="center-on-mobiles"><strong>Free hosting</strong> with GitHub Pages</h2>
|
82
|
-
<p>Sick of dealing with hosting companies? <a href="
|
82
|
+
<p>Sick of dealing with hosting companies? <a href="https://pages.github.com/">GitHub Pages</a> are <em>powered by Jekyll</em>, so you can easily deploy your site using GitHub for free—<a href="https://help.github.com/articles/about-supported-custom-domains/">custom domain name</a> and all.</p>
|
83
83
|
<a href="http://pages.github.com/">Learn more about GitHub Pages →</a>
|
84
84
|
</div>
|
85
85
|
</div>
|
data/site/latest_version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.1.2
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Parker Moore
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: 3.1.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
26
|
+
version: 3.1.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,7 @@ files:
|
|
66
66
|
- site/_data/docs.yml
|
67
67
|
- site/_docs/assets.md
|
68
68
|
- site/_docs/collections.md
|
69
|
+
- site/_docs/conduct.md
|
69
70
|
- site/_docs/configuration.md
|
70
71
|
- site/_docs/continuous-integration.md
|
71
72
|
- site/_docs/contributing.md
|
@@ -92,6 +93,8 @@ files:
|
|
92
93
|
- site/_docs/templates.md
|
93
94
|
- site/_docs/troubleshooting.md
|
94
95
|
- site/_docs/upgrading.md
|
96
|
+
- site/_docs/upgrading/0-to-2.md
|
97
|
+
- site/_docs/upgrading/2-to-3.md
|
95
98
|
- site/_docs/usage.md
|
96
99
|
- site/_docs/variables.md
|
97
100
|
- site/_docs/windows.md
|
@@ -152,7 +155,10 @@ files:
|
|
152
155
|
- site/_posts/2015-10-26-jekyll-3-0-released.markdown
|
153
156
|
- site/_posts/2015-11-17-jekyll-3-0-1-released.markdown
|
154
157
|
- site/_posts/2016-01-20-jekyll-3-0-2-released.markdown
|
158
|
+
- site/_posts/2016-01-24-jekyll-3-1-0-released.markdown
|
159
|
+
- site/_posts/2016-01-28-jekyll-3-1-1-released.markdown
|
155
160
|
- site/_posts/2016-02-08-jekyll-3-0-3-released.markdown
|
161
|
+
- site/_posts/2016-02-19-jekyll-3-1-2-released.markdown
|
156
162
|
- site/_sass/_font-awesome.scss
|
157
163
|
- site/_sass/_gridism.scss
|
158
164
|
- site/_sass/_mixins.scss
|
@@ -181,6 +187,8 @@ files:
|
|
181
187
|
- site/latest_version.txt
|
182
188
|
- site/news/index.html
|
183
189
|
- site/news/releases/index.html
|
190
|
+
- site/redirects/github.html
|
191
|
+
- site/redirects/issues.html
|
184
192
|
homepage: http://jekyllrb.com
|
185
193
|
licenses:
|
186
194
|
- MIT
|