diff --git a/site/_posts/2012-07-01-plugins.md b/site/_posts/2012-07-01-plugins.md
index 6543e621..cbed4b4e 100644
--- a/site/_posts/2012-07-01-plugins.md
+++ b/site/_posts/2012-07-01-plugins.md
@@ -73,6 +73,7 @@ category using the `category_index.html` layout.
Generators are only required to implement one method:
+
## Converters
@@ -130,6 +132,7 @@ end
Converters should implement at a minimum 3 methods:
+
In our example, UpcaseConverter-matches checks if our filename extension is `.upcase`, and will render using the converter if it is. It will call UpcaseConverter-convert to process the content - in our simple converter we’re simply capitalizing the entire content string. Finally, when it saves the page, it will do so with the `.html` extension.
@@ -194,6 +198,7 @@ Liquid::Template.register_tag('render_time', Jekyll::RenderTimeTag)
At a minimum, liquid tags must implement:
+
You must also register the custom tag with the Liquid template engine as follows:
@@ -256,6 +262,7 @@ Liquid::Template.register_filter(Jekyll::AssetFilter)
There are two flags to be aware of when writing a plugin:
+
To use one of the example plugins above as an illustration, here is how you’d specify these two flags:
diff --git a/site/_posts/2012-07-01-structure.md b/site/_posts/2012-07-01-structure.md
index 87362b44..49e3885b 100644
--- a/site/_posts/2012-07-01-structure.md
+++ b/site/_posts/2012-07-01-structure.md
@@ -27,6 +27,7 @@ A basic Jekyll site usually looks something like this:
An overview of what each of these does:
+
diff --git a/site/_posts/2012-07-01-templates.md b/site/_posts/2012-07-01-templates.md
index edd76a71..06d51626 100644
--- a/site/_posts/2012-07-01-templates.md
+++ b/site/_posts/2012-07-01-templates.md
@@ -9,6 +9,7 @@ Jekyll uses the [Liquid](http://www.liquidmarkup.org/) templating language to pr
## Filters
+
## Tags
@@ -214,4 +216,3 @@ You can also use this tag to create a link to a post in Markdown as follows:
{% highlight html %}
[Name of Link]({{ "{% post_url 2010-07-21-name-of-post " }}%})
{% endhighlight %}
-
diff --git a/site/_posts/2012-07-01-variables.md b/site/_posts/2012-07-01-variables.md
index 01091474..fcd11e40 100644
--- a/site/_posts/2012-07-01-variables.md
+++ b/site/_posts/2012-07-01-variables.md
@@ -9,6 +9,7 @@ Jekyll traverses your site looking for files to process. Any files with [YAML Fr
## Global Variables
+
## Site Variables
+
## Page Variables
+
ProTip™: Use custom front-matter
@@ -121,6 +127,7 @@ Jekyll traverses your site looking for files to process. Any files with [YAML Fr
## Paginator
+
Paginator variable availability