octopress-include-tag 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 633c2dc4ba2a2835fb054b66e518befc3eba5864
4
- data.tar.gz: e765d981dd4e650b5a8732fc11433761cdac9279
3
+ metadata.gz: b573bc4444a5091384735b96236abf828ffd2817
4
+ data.tar.gz: c7c8e1f52c7962529af8294a37c3e238dd301bb7
5
5
  SHA512:
6
- metadata.gz: 2d5b7598cdc4adad0880a782f8652b76d5b7f2bbcc547e56364cd445e2e0bb207db355a5c2bcb263eb1c297555056cbf6fa8c54c8609f1ad0f877d190ab656b7
7
- data.tar.gz: d802e466a57468f4cb359407be4a0067a8f247906aeb4159bb6849465cf2295291d284b12a6378d98c7e7248756cf600456fb30c8a426279b8661cf09bbc24dd
6
+ metadata.gz: 0f893e5ea32e44dec42812d2f7f10a3fa0c3bd7b8e98ddfbb5d0528d9302b75e40b932f401f0df0b0cec04506e5ccd2a7f4ffbf104c1d4d9f2ed7e044de8b343
7
+ data.tar.gz: 7793b6ca1b3ec04c860df1f651b20ab1d2385312bc9c1eb0b790a980765c7ded79b4f4118b0e01d54ba9b826bd4e2691446649245a6bb50fecf6ef44b20a5b22
@@ -2,6 +2,10 @@
2
2
 
3
3
  ### 1.0.2 - 2015-01-11
4
4
 
5
+ - Minor docs updates
6
+
7
+ ### 1.0.2 - 2015-01-11
8
+
5
9
  - Updated module naming, Readme, and Octopress docs integration
6
10
 
7
11
  ### 1.0.1 - 2014-07-14
data/README.md CHANGED
@@ -71,23 +71,29 @@ It's easy to include a partial from an Ink theme or plugin.
71
71
 
72
72
  Here's the syntax
73
73
 
74
- {% include [plugin-slug]:[partial-name] %}
74
+ ```
75
+ {% include [plugin-slug]:[partial-name] %}
76
+ ```
75
77
 
76
78
  Some examples:
77
79
 
78
- {% include theme:sidebar.html %} // Include the sidebar from a theme plugin
79
- {% include twitter:feed.html %} // Include the feed from a twitter plugin
80
+ ```
81
+ {% include theme:sidebar.html %} // Include the sidebar from a theme plugin
82
+ {% include twitter:feed.html %} // Include the feed from a twitter plugin
83
+ ```
80
84
 
81
85
  #### Overriding theme/plugin partials
82
86
 
83
87
  Plugins and themes use this tag internally too. For example, the [octopress-feeds plugin](https://github.com/octopress/feeds/blob/master/assets/pages/article-feed.xml#L10) uses the include tag to
84
88
  render partials for the RSS feed.
85
89
 
86
- {% for post in site.articles %}
87
- <entry>
88
- {% include feeds:entry.xml %}
89
- </entry>
90
- {% endfor %}
90
+ ```html
91
+ {% for post in site.articles %}
92
+ <entry>
93
+ {% include feeds:entry.xml %}
94
+ </entry>
95
+ {% endfor %}
96
+ ```
91
97
 
92
98
  If you want to make a change to the `entry.xml` partial, you could create your own version at `_plugins/feeds/includes/entry.xml`.
93
99
  Now whenever `{% include feeds:entry.xml %}` is called, the include tag will use *your* local partial instead of the plugin's partial.
@@ -1,7 +1,7 @@
1
1
  module Octopress
2
2
  module Tags
3
3
  module Include
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-include-tag
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis