Future
- Publish posts with a future date.
+ Publish posts or collection documents with a future date.
|
future: BOOL
diff --git a/site/_docs/contributing.md b/site/_docs/contributing.md
index 9ac49666..c128ced9 100644
--- a/site/_docs/contributing.md
+++ b/site/_docs/contributing.md
@@ -20,7 +20,7 @@ Whether you're a developer, a designer, or just a Jekyll devotee, there are lots
* [Install Jekyll on your computer](https://jekyllrb.com/docs/installation/) and kick the tires. Does it work? Does it do what you'd expect? If not, [open an issue](https://github.com/jekyll/jekyll/issues/new) and let us know.
* Comment on some of the project's [open issues](https://github.com/jekyll/jekyll/issues). Have you experienced the same problem? Know a work around? Do you have a suggestion for how the feature could be better?
-* Read through [the documentation](http://jekyllrb.com/docs/home/), and click the "improve this page" button, any time you see something confusing, or have a suggestion for something that could be improved.
+* Read through [the documentation](https://jekyllrb.com/docs/home/), and click the "improve this page" button, any time you see something confusing, or have a suggestion for something that could be improved.
* Browse through [the Jekyll discussion forum](https://talk.jekyllrb.com/), and lend a hand answering questions. There's a good chance you've already experienced what another user is experiencing.
* Find [an open issue](https://github.com/jekyll/jekyll/issues) (especially [those labeled `help-wanted`](https://github.com/jekyll/jekyll/issues?q=is%3Aopen+is%3Aissue+label%3Ahelp-wanted)), and submit a proposed fix. If it's your first pull request, we promise we won't bite, and are glad to answer any questions.
* Help evaluate [open pull requests](https://github.com/jekyll/jekyll/pulls), by testing the changes locally and reviewing what's proposed.
@@ -73,7 +73,7 @@ One gotcha, all pull requests should be directed at the `master` branch (the def
### Adding plugins
-If you want to add your plugin to the [list of plugins](http://jekyllrb.com/docs/plugins/#available-plugins), please submit a pull request modifying the [plugins page source file](site/_docs/plugins.md) by adding a link to your plugin under the proper subheading depending upon its type.
+If you want to add your plugin to the [list of plugins](https://jekyllrb.com/docs/plugins/#available-plugins), please submit a pull request modifying the [plugins page source file](site/_docs/plugins.md) by adding a link to your plugin under the proper subheading depending upon its type.
## Code Contributions
@@ -105,19 +105,19 @@ If your contribution changes any Jekyll behavior, make sure to update the docume
To run the test suite and build the gem you'll need to install Jekyll's dependencies by running the following command:
- $ script/bootstrap
+$ script/bootstrap
Before you make any changes, run the tests and make sure that they pass (to confirm your environment is configured properly):
- $ script/cibuild
+$ script/cibuild
If you are only updating a file in `test/`, you can use the command:
- $ script/test test/blah_test.rb
+$ script/test test/blah_test.rb
If you are only updating a `.feature` file, you can use the command:
- $ script/cucumber features/blah.feature
+$ script/cucumber features/blah.feature
Both `script/test` and `script/cucumber` can be run without arguments to
run its entire respective suite.
diff --git a/site/_docs/plugins.md b/site/_docs/plugins.md
index 932fd204..8f173cb0 100644
--- a/site/_docs/plugins.md
+++ b/site/_docs/plugins.md
@@ -516,6 +516,18 @@ The complete list of available hooks is below:
|
+
+
+ :site
+ |
+
+ :after_init
+ |
+
+ Just after the site initializes, but before setup & render. Good
+ for modifying the configuration of the site.
+ |
+
:site
@@ -885,6 +897,7 @@ LESS.js files during generation.
- [Jekyll Language Plugin](https://github.com/vwochnik/jekyll-language-plugin): Jekyll 3.0-compatible multi-language plugin for posts, pages and includes.
- [Jekyll Deploy](https://github.com/vwochnik/jekyll-deploy): Adds a `deploy` sub-command to Jekyll.
- [Official Contentful Jekyll Plugin](https://github.com/contentful/jekyll-contentful-data-import): Adds a `contentful` sub-command to Jekyll to import data from Contentful.
+- [jekyll-paspagon](https://github.com/KrzysiekJ/jekyll-paspagon): Sell your posts in various formats for cryptocurrencies.
#### Editors
diff --git a/site/_docs/resources.md b/site/_docs/resources.md
index 261100f0..0e403986 100644
--- a/site/_docs/resources.md
+++ b/site/_docs/resources.md
@@ -35,4 +35,4 @@ Jekyll’s growing use is producing a wide variety of tutorials, frameworks, ext
- [Generating a Tag Cloud in Jekyll](http://www.justkez.com/generating-a-tag-cloud-in-jekyll/) – A guide to implementing a tag cloud and per-tag content pages using Jekyll.
- A way to [extend Jekyll](https://github.com/rfelix/jekyll_ext) without forking and modifying the Jekyll gem codebase and some [portable Jekyll extensions](https://wiki.github.com/rfelix/jekyll_ext/extensions) that can be reused and shared.
- [Using your Rails layouts in Jekyll](http://numbers.brighterplanet.com/2010/08/09/sharing-rails-views-with-jekyll)
-- [Adding Ajax pagination to Jekyll](https://eduardoboucas.com/blog/2014/11/10/adding-ajax-pagination-to-jekyll.html)
+- [Adding Ajax pagination to Jekyll](https://eduardoboucas.com/blog/2014/11/05/adding-ajax-pagination-to-jekyll.html)
diff --git a/site/_docs/templates.md b/site/_docs/templates.md
index 0ebd35f8..60892505 100644
--- a/site/_docs/templates.md
+++ b/site/_docs/templates.md
@@ -271,6 +271,39 @@ common tasks easier.
|
+
+
+ Array Filters
+ Push, pop, shift, and unshift elements from an Array.
+ These are NON-DESTRUCTIVE, i.e. they do not mutate the array, but rather make a copy and mutate that.
+ |
+
+
+ {% raw %}{{ page.tags | push: 'Spokane' }}{% endraw %}
+
+
+ ['Seattle', 'Tacoma', 'Spokane']
+
+
+ {% raw %}{{ page.tags | pop }}{% endraw %}
+
+
+ ['Seattle']
+
+
+ {% raw %}{{ page.tags | shift }}{% endraw %}
+
+
+ ['Tacoma']
+
+
+ {% raw %}{{ page.tags | unshift: "Olympia" }}{% endraw %}
+
+
+ ['Olympia', 'Seattle', 'Tacoma']
+
+ |
+