Fixes for @parkr comments.

This commit is contained in:
Tom Preston-Werner 2013-04-06 23:14:03 -07:00
parent 8316e1da4a
commit 565e815354
3 changed files with 19 additions and 16 deletions

View File

@ -17,9 +17,9 @@ following in mind:
where appropriate. Also, whipping up some documentation in your fork's wiki where appropriate. Also, whipping up some documentation in your fork's wiki
would be appreciated, and once merged it will be transferred over to the main would be appreciated, and once merged it will be transferred over to the main
wiki. wiki.
* If your contribution changes any Jekyll behavior, make sure to update the * If your contribution adds or changes any Jekyll behavior, make sure to update
documentation. It lives in `site/_posts`. If the docs are missing information, the documentation. It lives in `site/_posts`. If the docs are missing
please feel free to add it in. Great docs make a great project! information, please feel free to add it in. Great docs make a great project!
* Please follow the [GitHub Ruby Styleguide](https://github.com/styleguide/ruby) * Please follow the [GitHub Ruby Styleguide](https://github.com/styleguide/ruby)
when modifying Ruby code. when modifying Ruby code.
@ -35,7 +35,7 @@ Test Dependencies
----------------- -----------------
To run the test suite and build the gem you'll need to install Jekyll's To run the test suite and build the gem you'll need to install Jekyll's
dependencies. Jekyll uses Bundler, so a quick run of the bundle command and dependencies. Jekyll uses Bundler, so a quick run of the `bundle` command and
you're all set! you're all set!
{% highlight bash %} {% highlight bash %}

View File

@ -63,8 +63,9 @@ An overview of what each of these does:
<p> <p>
These are the partials that can be mixed and matched by your layouts These are the partials that can be mixed and matched by your layouts
and posts to facilitate reuse. The liquid tag <code>{% raw %}{% include and posts to facilitate reuse. The liquid tag
file.ext %}{% endraw %}</code> can be used to include the partial in <code>{% raw %}{% include file.ext %}{% endraw %}</code>
can be used to include the partial in
<code>_includes/file.ext</code>. <code>_includes/file.ext</code>.
</p> </p>
@ -79,8 +80,9 @@ An overview of what each of these does:
These are the templates that wrap posts. Layouts are chosen on a post- These are the templates that wrap posts. Layouts are chosen on a post-
by-post basis in the <a href="../frontmatter">YAML front matter</a>, by-post basis in the <a href="../frontmatter">YAML front matter</a>,
which is described in the next section. The liquid tag <code>{% raw %}{{ which is described in the next section. The liquid tag
content }}{% endraw %}</code> is used to inject content into the web page. <code>{% raw %}{{ content }}{% endraw %}</code>
is used to inject content into the web page.
</p> </p>
</td> </td>
@ -93,10 +95,11 @@ An overview of what each of these does:
<p> <p>
Your dynamic content, so to speak. The format of these files is Your dynamic content, so to speak. The format of these files is
important, and must follow the format: <code>YEAR-MONTH-DAY- important, and must follow the format:
title.MARKUP</code>. The <a href="../permalinks">permalinks</a> can be <code>YEAR-MONTH-DAY-title.MARKUP</code>.
customized for each post, but the date and markup language are The <a href="../permalinks">permalinks</a> can be customized for each
determined solely by the file name. post, but the date and markup language are determined solely by the
file name.
</p> </p>
</td> </td>

View File

@ -163,8 +163,8 @@ following is a reference of the available data.
<td><p><code>page.url</code></p></td> <td><p><code>page.url</code></p></td>
<td><p> <td><p>
The URL of the Post without the domain. e.g. <code>/2008/12/14/my- The URL of the Post without the domain. e.g.
post.html</code> <code>/2008/12/14/my-post.html</code>
</p></td> </p></td>
</tr> </tr>
@ -173,8 +173,8 @@ following is a reference of the available data.
<td><p> <td><p>
The Date assigned to the Post. This can be overridden in a Posts front The Date assigned to the Post. This can be overridden in a Posts front
matter by specifying a new date/time in the format <code>YYYY-MM-DD matter by specifying a new date/time in the format
HH:MM:SS</code> <code>YYYY-MM-DD HH:MM:SS</code>
</p></td> </p></td>
</tr> </tr>