Updated language for relative_permalinks

This commit is contained in:
Parker Moore 2013-05-12 16:05:18 +02:00
parent 8051df0f4c
commit f56090be3f
1 changed files with 7 additions and 8 deletions

View File

@ -35,14 +35,13 @@ rebuild each time a file changes, just add the `--watch` flag at the end.
### Absolute Permalinks ### Absolute Permalinks
In older Jekyll versions, one could use relative permalinks for pages in In Jekyll v1.0, we introduced absolute permalinks for pages in subdirectories.
subdirectories. As of Jekyll v1.0, **we introduced absolute permalinks**, Until v1.1, it is **opt-in**. Starting with v1.1, however, absolute permalinks
which do not take advantage of the page's directory position to write the will become **opt-out**, meaning Jekyll will default to using absolute permalinks
permalink. As of Jekyll v1.0.2, a new switch, `relative_permalinks`, instead of 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, * To use absolute permalinks, set `relative_permalinks: true` in your configuration file.
this switch defaults to `true`, but it will default to `false` * To continue using relative permalinks, set `relative_permalinks: false` in your configuration file.
in v1.1.0 and beyond.
<div class="note warning" id="absolute-permalinks-warning"> <div class="note warning" id="absolute-permalinks-warning">
<h5 markdown="1">Absolute permalinks will be default in v1.1 and on</h5> <h5 markdown="1">Absolute permalinks will be default in v1.1 and on</h5>