From f56090be3f05bda8845f75ead25bbdbd8aa2a163 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 12 May 2013 16:05:18 +0200 Subject: [PATCH] Updated language for relative_permalinks --- site/docs/upgrading.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/site/docs/upgrading.md b/site/docs/upgrading.md index 2e85533e..cea5a923 100644 --- a/site/docs/upgrading.md +++ b/site/docs/upgrading.md @@ -35,14 +35,13 @@ rebuild each time a file changes, just add the `--watch` flag at the end. ### Absolute Permalinks -In older Jekyll versions, one could use relative permalinks for pages in -subdirectories. As of Jekyll v1.0, **we introduced absolute permalinks**, -which do not take advantage of the page's directory position to write the -permalink. As of Jekyll v1.0.2, a new switch, `relative_permalinks`, -allows the user to turn relative permalinks on and off at will, in order -to preserve the old behaviour, or use the new behaviour. As of v1.0.2, -this switch defaults to `true`, but it will default to `false` -in v1.1.0 and beyond. +In Jekyll v1.0, we introduced absolute permalinks for pages in subdirectories. +Until v1.1, it is **opt-in**. Starting with v1.1, however, absolute permalinks +will become **opt-out**, meaning Jekyll will default to using absolute permalinks +instead of relative permalinks. + +* To use absolute permalinks, set `relative_permalinks: true` in your configuration file. +* To continue using relative permalinks, set `relative_permalinks: false` in your configuration file.