diff --git a/History.markdown b/History.markdown index e98b6c33..b51aae13 100644 --- a/History.markdown +++ b/History.markdown @@ -395,7 +395,7 @@ * Add `show_dir_listing` option for serve command and fix index file names (#4533) * Site Template: write a Gemfile which is educational to the new site (#4542) * Site template: add explanation of site variables in the example `_config.yml` (#4704) - * Adds `link` Liquid tag to make generation of URL's easier (#4624) + * Adds `link` Liquid tag to make generation of URLs easier (#4624) * Allow static files to be symlinked in unsafe mode or non-prod environments (#4640) * Add `:after_init` hook & add `Site#config=` to make resetting config easy (#4703) * DocumentDrop: add `#<=>` which sorts by date (falling back to path) (#4741) @@ -1178,7 +1178,7 @@ * Fix Rouge's RedCarpet plugin interface integration (#2951) * Remove `--watch` from the site template blog post since it defaults to watching in in 2.4.0 (#2922) * Fix code for media query mixin in site template (#2946) - * Allow post URL's to have `.htm` extensions (#2925) + * Allow post URLs to have `.htm` extensions (#2925) * `Utils.slugify`: Don't create new objects when gsubbing (#2997) * The jsonify filter should deep-convert to Liquid when given an Array. (#3032) * Apply `jsonify` filter to Hashes deeply and effectively (#3063) diff --git a/docs/_docs/github-pages.md b/docs/_docs/github-pages.md index 875bb0ec..2d519f68 100644 --- a/docs/_docs/github-pages.md +++ b/docs/_docs/github-pages.md @@ -17,13 +17,13 @@ This guide will teach you what you need to know about Git, GitHub, and Jekyll to Sometimes it's nice to preview your Jekyll site before you push your `gh-pages` branch to GitHub. However, the subdirectory-like URL structure GitHub uses for -Project Pages complicates the proper resolution of URLs. In order to assure your site builds properly, use `site.github.url` in your URL's. +Project Pages complicates the proper resolution of URLs. In order to assure your site builds properly, use `site.github.url` in your URLs. ```html {% raw %} - + [{{ page.title }}]("{{ page.url | prepend: site.github.url }}") {% endraw %} ``` diff --git a/docs/_docs/history.md b/docs/_docs/history.md index d0938169..c67f978a 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -346,7 +346,7 @@ note: This file is autogenerated. Edit /History.markdown instead. - Add `show_dir_listing` option for serve command and fix index file names ([#4533]({{ site.repository }}/issues/4533)) - Site Template: write a Gemfile which is educational to the new site ([#4542]({{ site.repository }}/issues/4542)) - Site template: add explanation of site variables in the example `_config.yml` ([#4704]({{ site.repository }}/issues/4704)) -- Adds `link` Liquid tag to make generation of URL's easier ([#4624]({{ site.repository }}/issues/4624)) +- Adds `link` Liquid tag to make generation of URLs easier ([#4624]({{ site.repository }}/issues/4624)) - Allow static files to be symlinked in unsafe mode or non-prod environments ([#4640]({{ site.repository }}/issues/4640)) - Add `:after_init` hook & add `Site#config=` to make resetting config easy ([#4703]({{ site.repository }}/issues/4703)) - DocumentDrop: add `#<=>` which sorts by date (falling back to path) ([#4741]({{ site.repository }}/issues/4741)) @@ -1200,7 +1200,7 @@ note: This file is autogenerated. Edit /History.markdown instead. - Fix Rouge's RedCarpet plugin interface integration ([#2951]({{ site.repository }}/issues/2951)) - Remove `--watch` from the site template blog post since it defaults to watching in in 2.4.0 ([#2922]({{ site.repository }}/issues/2922)) - Fix code for media query mixin in site template ([#2946]({{ site.repository }}/issues/2946)) -- Allow post URL's to have `.htm` extensions ([#2925]({{ site.repository }}/issues/2925)) +- Allow post URLs to have `.htm` extensions ([#2925]({{ site.repository }}/issues/2925)) - `Utils.slugify`: Don't create new objects when gsubbing ([#2997]({{ site.repository }}/issues/2997)) - The jsonify filter should deep-convert to Liquid when given an Array. ([#3032]({{ site.repository }}/issues/3032)) - Apply `jsonify` filter to Hashes deeply and effectively ([#3063]({{ site.repository }}/issues/3063)) diff --git a/docs/_docs/posts.md b/docs/_docs/posts.md index ce00e2dd..79b91815 100644 --- a/docs/_docs/posts.md +++ b/docs/_docs/posts.md @@ -43,7 +43,7 @@ file. For example, the following are examples of valid post filenames:
Use the post_url
- tag to link to other posts without having to worry about the URL's
+ tag to link to other posts without having to worry about the URLs
breaking when the site permalink style changes.