fix unescaped liquid tag, fixes #1019

This commit is contained in:
David Briggs 2013-05-06 10:50:53 +02:00 committed by Parker Moore
parent d30117aeb2
commit a5a6be1b1b
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ Often, you'll want the ability to run a Jekyll site in multiple places, such as
previewing locally before pushing to GitHub Pages. Jekyll 1.0 makes that
easier with the new `--baseurl` flag. To take advantage of this feature, first
add the production `baseurl` to your site's `_config.yml` file. Then,
throughout the site, simply prefix relative URLs with `{{ site.baseurl }}`.
throughout the site, simply prefix relative URLs with `{% raw %}{{ site.baseurl }}{% endraw %}`.
When you're ready to preview your site locally, pass along the `--baseurl` flag
with your local baseurl (most likely `/`) to `jekyll serve` and Jekyll will
swap in whatever you've passed along, ensuring all your links work as you'd