tigefa 1.0.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (249) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.markdown +91 -0
  3. data/Gemfile +2 -0
  4. data/History.markdown +871 -0
  5. data/LICENSE +15 -14
  6. data/README.markdown +59 -0
  7. data/Rakefile +298 -0
  8. data/bin/tigefa +158 -0
  9. data/cucumber.yml +3 -0
  10. data/features/create_sites.feature +141 -0
  11. data/features/data.feature +65 -0
  12. data/features/drafts.feature +25 -0
  13. data/features/embed_filters.feature +60 -0
  14. data/features/include_tag.feature +57 -0
  15. data/features/markdown.feature +67 -0
  16. data/features/pagination.feature +82 -0
  17. data/features/permalinks.feature +85 -0
  18. data/features/post_data.feature +214 -0
  19. data/features/post_excerpts.feature +50 -0
  20. data/features/site_configuration.feature +235 -0
  21. data/features/site_data.feature +107 -0
  22. data/features/step_definitions/tigefa_steps.rb +189 -0
  23. data/features/support/env.rb +75 -0
  24. data/lib/site_template/.gitignore +1 -0
  25. data/lib/site_template/_config.yml +3 -0
  26. data/lib/site_template/_layouts/default.html +44 -0
  27. data/lib/site_template/_layouts/post.html +9 -0
  28. data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +24 -0
  29. data/lib/site_template/css/main.css +160 -0
  30. data/lib/site_template/css/syntax.css +60 -0
  31. data/lib/site_template/index.html +13 -0
  32. data/lib/tigefa/cleaner.rb +73 -0
  33. data/lib/tigefa/command.rb +27 -0
  34. data/lib/tigefa/commands/build.rb +70 -0
  35. data/lib/tigefa/commands/doctor.rb +67 -0
  36. data/lib/tigefa/commands/new.rb +67 -0
  37. data/lib/tigefa/commands/serve.rb +65 -0
  38. data/lib/tigefa/configuration.rb +238 -0
  39. data/lib/tigefa/converter.rb +48 -0
  40. data/lib/tigefa/converters/identity.rb +21 -0
  41. data/lib/tigefa/converters/markdown/kramdown_parser.rb +29 -0
  42. data/lib/tigefa/converters/markdown/maruku_parser.rb +56 -0
  43. data/lib/tigefa/converters/markdown/rdiscount_parser.rb +37 -0
  44. data/lib/tigefa/converters/markdown/redcarpet_parser.rb +70 -0
  45. data/lib/tigefa/converters/markdown.rb +43 -0
  46. data/lib/tigefa/converters/textile.rb +50 -0
  47. data/lib/tigefa/convertible.rb +174 -0
  48. data/lib/tigefa/core_ext.rb +90 -0
  49. data/lib/tigefa/deprecator.rb +36 -0
  50. data/lib/tigefa/draft.rb +35 -0
  51. data/lib/tigefa/entry_filter.rb +35 -0
  52. data/lib/tigefa/errors.rb +4 -0
  53. data/lib/tigefa/excerpt.rb +113 -0
  54. data/lib/tigefa/filters.rb +174 -0
  55. data/lib/tigefa/generator.rb +4 -0
  56. data/lib/tigefa/generators/pagination.rb +217 -0
  57. data/lib/tigefa/layout.rb +45 -0
  58. data/lib/tigefa/mime.types +85 -0
  59. data/lib/tigefa/page.rb +160 -0
  60. data/lib/tigefa/plugin.rb +75 -0
  61. data/lib/tigefa/post.rb +312 -0
  62. data/lib/tigefa/related_posts.rb +59 -0
  63. data/lib/tigefa/site.rb +427 -0
  64. data/lib/tigefa/static_file.rb +70 -0
  65. data/lib/tigefa/stevenson.rb +89 -0
  66. data/lib/tigefa/tags/gist.rb +48 -0
  67. data/lib/tigefa/tags/highlight.rb +85 -0
  68. data/lib/tigefa/tags/include.rb +134 -0
  69. data/lib/tigefa/tags/post_url.rb +63 -0
  70. data/lib/tigefa/url.rb +69 -0
  71. data/lib/tigefa.rb +98 -4
  72. data/script/bootstrap +2 -0
  73. data/site/.gitignore +4 -0
  74. data/site/CNAME +1 -0
  75. data/site/README +1 -0
  76. data/site/_config.yml +6 -0
  77. data/site/_includes/analytics.html +32 -0
  78. data/site/_includes/docs_contents.html +16 -0
  79. data/site/_includes/docs_contents_mobile.html +23 -0
  80. data/site/_includes/docs_option.html +11 -0
  81. data/site/_includes/docs_ul.html +20 -0
  82. data/site/_includes/footer.html +15 -0
  83. data/site/_includes/header.html +18 -0
  84. data/site/_includes/news_contents.html +23 -0
  85. data/site/_includes/news_contents_mobile.html +11 -0
  86. data/site/_includes/news_item.html +24 -0
  87. data/site/_includes/primary-nav-items.html +14 -0
  88. data/site/_includes/section_nav.html +22 -0
  89. data/site/_includes/top.html +17 -0
  90. data/site/_layouts/default.html +12 -0
  91. data/site/_layouts/docs.html +23 -0
  92. data/site/_layouts/news.html +19 -0
  93. data/site/_layouts/news_item.html +27 -0
  94. data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +23 -0
  95. data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +27 -0
  96. data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +28 -0
  97. data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +25 -0
  98. data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +27 -0
  99. data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +31 -0
  100. data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +20 -0
  101. data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +20 -0
  102. data/site/_posts/2013-09-06-jekyll-1-2-0-released.markdown +23 -0
  103. data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +19 -0
  104. data/site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown +19 -0
  105. data/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown +43 -0
  106. data/site/_posts/2013-11-26-jekyll-1-3-1-released.markdown +21 -0
  107. data/site/_posts/2013-12-07-jekyll-1-4-0-released.markdown +30 -0
  108. data/site/_posts/2013-12-16-jekyll-1-4-2-released.markdown +18 -0
  109. data/site/_posts/2014-01-13-jekyll-1-4-3-released.markdown +27 -0
  110. data/site/css/gridism.css +110 -0
  111. data/site/css/normalize.css +1 -0
  112. data/site/css/pygments.css +70 -0
  113. data/site/css/style.css +946 -0
  114. data/site/docs/configuration.md +375 -0
  115. data/site/docs/contributing.md +128 -0
  116. data/site/docs/datafiles.md +63 -0
  117. data/site/docs/deployment-methods.md +109 -0
  118. data/site/docs/drafts.md +21 -0
  119. data/site/docs/extras.md +56 -0
  120. data/site/docs/frontmatter.md +180 -0
  121. data/site/docs/github-pages.md +91 -0
  122. data/site/docs/heroku.md +9 -0
  123. data/site/docs/history.md +866 -0
  124. data/site/docs/index.md +52 -0
  125. data/site/docs/installation.md +76 -0
  126. data/site/docs/migrations.md +11 -0
  127. data/site/docs/pages.md +86 -0
  128. data/site/docs/pagination.md +211 -0
  129. data/site/docs/permalinks.md +180 -0
  130. data/site/docs/plugins.md +534 -0
  131. data/site/docs/posts.md +181 -0
  132. data/site/docs/quickstart.md +32 -0
  133. data/site/docs/resources.md +46 -0
  134. data/site/docs/sites.md +29 -0
  135. data/site/docs/structure.md +190 -0
  136. data/site/docs/templates.md +339 -0
  137. data/site/docs/troubleshooting.md +150 -0
  138. data/site/docs/upgrading.md +146 -0
  139. data/site/docs/usage.md +63 -0
  140. data/site/docs/variables.md +322 -0
  141. data/site/favicon.png +0 -0
  142. data/site/feed.xml +36 -0
  143. data/site/freenode.txt +1 -0
  144. data/site/img/article-footer.png +0 -0
  145. data/site/img/footer-arrow.png +0 -0
  146. data/site/img/footer-logo.png +0 -0
  147. data/site/img/logo-2x.png +0 -0
  148. data/site/img/octojekyll.png +0 -0
  149. data/site/img/tube.png +0 -0
  150. data/site/img/tube1x.png +0 -0
  151. data/site/index.html +90 -0
  152. data/site/js/modernizr-2.5.3.min.js +4 -0
  153. data/site/news/index.html +10 -0
  154. data/site/news/releases/index.html +10 -0
  155. data/test/fixtures/broken_front_matter1.erb +5 -0
  156. data/test/fixtures/broken_front_matter2.erb +4 -0
  157. data/test/fixtures/broken_front_matter3.erb +7 -0
  158. data/test/fixtures/exploit_front_matter.erb +4 -0
  159. data/test/fixtures/front_matter.erb +4 -0
  160. data/test/helper.rb +65 -0
  161. data/test/source/+/foo.md +7 -0
  162. data/test/source/.htaccess +8 -0
  163. data/test/source/_config.dev.toml +2 -0
  164. data/test/source/_data/languages.yml +2 -0
  165. data/test/source/_data/members.yaml +7 -0
  166. data/test/source/_data/products.yml +1 -0
  167. data/test/source/_includes/params.html +7 -0
  168. data/test/source/_includes/sig.markdown +3 -0
  169. data/test/source/_includes/tmp +1 -0
  170. data/test/source/_layouts/default.html +27 -0
  171. data/test/source/_layouts/post/simple.html +1 -0
  172. data/test/source/_layouts/simple.html +1 -0
  173. data/test/source/_plugins/dummy.rb +8 -0
  174. data/test/source/_posts/2008-02-02-not-published.textile +8 -0
  175. data/test/source/_posts/2008-02-02-published.textile +8 -0
  176. data/test/source/_posts/2008-10-18-foo-bar.textile +8 -0
  177. data/test/source/_posts/2008-11-21-complex.textile +8 -0
  178. data/test/source/_posts/2008-12-03-permalinked-post.textile +9 -0
  179. data/test/source/_posts/2008-12-13-include.markdown +8 -0
  180. data/test/source/_posts/2009-01-27-array-categories.textile +10 -0
  181. data/test/source/_posts/2009-01-27-categories.textile +7 -0
  182. data/test/source/_posts/2009-01-27-category.textile +7 -0
  183. data/test/source/_posts/2009-01-27-empty-categories.textile +7 -0
  184. data/test/source/_posts/2009-01-27-empty-category.textile +7 -0
  185. data/test/source/_posts/2009-03-12-hash-#1.markdown +6 -0
  186. data/test/source/_posts/2009-05-18-empty-tag.textile +6 -0
  187. data/test/source/_posts/2009-05-18-empty-tags.textile +6 -0
  188. data/test/source/_posts/2009-05-18-tag.textile +6 -0
  189. data/test/source/_posts/2009-05-18-tags.textile +9 -0
  190. data/test/source/_posts/2009-06-22-empty-yaml.textile +3 -0
  191. data/test/source/_posts/2009-06-22-no-yaml.textile +1 -0
  192. data/test/source/_posts/2010-01-08-triple-dash.markdown +5 -0
  193. data/test/source/_posts/2010-01-09-date-override.textile +7 -0
  194. data/test/source/_posts/2010-01-09-time-override.textile +7 -0
  195. data/test/source/_posts/2010-01-09-timezone-override.textile +7 -0
  196. data/test/source/_posts/2010-01-16-override-data.textile +4 -0
  197. data/test/source/_posts/2011-04-12-md-extension.md +7 -0
  198. data/test/source/_posts/2011-04-12-text-extension.text +0 -0
  199. data/test/source/_posts/2013-01-02-post-excerpt.markdown +14 -0
  200. data/test/source/_posts/2013-01-12-nil-layout.textile +6 -0
  201. data/test/source/_posts/2013-01-12-no-layout.textile +5 -0
  202. data/test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep +0 -0
  203. data/test/source/_posts/2013-04-11-custom-excerpt.markdown +10 -0
  204. data/test/source/_posts/2013-05-10-number-category.textile +7 -0
  205. data/test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown +23 -0
  206. data/test/source/_posts/2013-08-01-mkdn-extension.mkdn +0 -0
  207. data/test/source/_posts/2014-01-06-permalink-traversal.md +5 -0
  208. data/test/source/_posts/es/2008-11-21-nested.textile +8 -0
  209. data/test/source/about.html +6 -0
  210. data/test/source/category/_posts/2008-9-23-categories.textile +6 -0
  211. data/test/source/contacts/bar.html +5 -0
  212. data/test/source/contacts/index.html +5 -0
  213. data/test/source/contacts.html +5 -0
  214. data/test/source/css/screen.css +76 -0
  215. data/test/source/deal.with.dots.html +7 -0
  216. data/test/source/exploit.md +5 -0
  217. data/test/source/foo/_posts/bar/2008-12-12-topical-post.textile +8 -0
  218. data/test/source/index.html +22 -0
  219. data/test/source/products.yml +4 -0
  220. data/test/source/sitemap.xml +32 -0
  221. data/test/source/symlink-test/_data +1 -0
  222. data/test/source/symlink-test/symlinked-dir +1 -0
  223. data/test/source/symlink-test/symlinked-file +1 -0
  224. data/test/source/win/_posts/2009-05-24-yaml-linebreak.markdown +7 -0
  225. data/test/source/z_category/_posts/2008-9-23-categories.textile +6 -0
  226. data/test/suite.rb +11 -0
  227. data/test/test_command.rb +39 -0
  228. data/test/test_configuration.rb +181 -0
  229. data/test/test_convertible.rb +51 -0
  230. data/test/test_core_ext.rb +88 -0
  231. data/test/test_entry_filter.rb +74 -0
  232. data/test/test_excerpt.rb +78 -0
  233. data/test/test_filters.rb +113 -0
  234. data/test/test_generated_site.rb +83 -0
  235. data/test/test_kramdown.rb +62 -0
  236. data/test/test_new_command.rb +104 -0
  237. data/test/test_page.rb +212 -0
  238. data/test/test_pager.rb +116 -0
  239. data/test/test_post.rb +592 -0
  240. data/test/test_rdiscount.rb +22 -0
  241. data/test/test_redcarpet.rb +61 -0
  242. data/test/test_redcloth.rb +86 -0
  243. data/test/test_related_posts.rb +47 -0
  244. data/test/test_site.rb +333 -0
  245. data/test/test_tags.rb +490 -0
  246. data/test/test_url.rb +28 -0
  247. data/tigefa.gemspec +306 -0
  248. metadata +575 -45
  249. data/README.md +0 -4
@@ -0,0 +1,866 @@
1
+ ---
2
+ prev_section: contributing
3
+ title: History
4
+ layout: docs
5
+ permalink: /docs/history/
6
+ ---
7
+
8
+ ## 1.4.3 / 2014-01-13
9
+
10
+ ### Bug Fixes
11
+
12
+ - Patch show-stopping security vulnerabilities ([#1944]({{ site.repository }}/issues/1944))
13
+
14
+ ## 1.4.2 / 2013-12-16
15
+
16
+ ### Bug Fixes
17
+ - Turn on Maruku fenced code blocks by default ([#1830]({{ site.repository }}/issues/1830))
18
+
19
+ ## 1.4.1 / 2013-12-09
20
+
21
+ ### Bug Fixes
22
+ - Don't allow nil entries when loading posts ([#1796]({{ site.repository }}/issues/1796))
23
+
24
+ ## 1.4.0 / 2013-12-07
25
+
26
+ ### Major Enhancements
27
+ - Add support for TOML config files ([#1765]({{ site.repository }}/issues/1765))
28
+
29
+ ### Minor Enhancements
30
+ - Sort plugins as a way to establish a load order ([#1682]({{ site.repository }}/issues/1682))
31
+ - Update Maruku to 0.7.0 ([#1775]({{ site.repository }}/issues/1775))
32
+
33
+ ### Bug Fixes
34
+ - Add a space between two words in a Pagination warning message ([#1769]({{ site.repository }}/issues/1769))
35
+ - Upgrade `toml` gem to `v0.1.0` to maintain compat with Ruby 1.8.7 ([#1778]({{ site.repository }}/issues/1778))
36
+
37
+ ### Development Fixes
38
+ - Remove some whitespace in the code ([#1755]({{ site.repository }}/issues/1755))
39
+ - Remove some duplication in the reading of posts and drafts ([#1779]({{ site.repository }}/issues/1779))
40
+
41
+ ### Site Enhancements
42
+ - Fixed case of a word in the Jekyll v1.3.0 release post ([#1762]({{ site.repository }}/issues/1762))
43
+ - Fixed the mime type for the favicon ([#1772]({{ site.repository }}/issues/1772))
44
+
45
+ ## 1.3.1 / 2013-11-26
46
+
47
+ ### Minor Enhancements
48
+ - Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
49
+ - Push the paginator plugin lower in the plugin priority order so
50
+ other plugins run before it ([#1759]({{ site.repository }}/issues/1759))
51
+
52
+ ### Bug Fixes
53
+ - Fix the include tag when ran in a loop ([#1726]({{ site.repository }}/issues/1726))
54
+ - Fix errors when using `--watch` on 1.8.7 ([#1730]({{ site.repository }}/issues/1730))
55
+ - Specify where the include is called from if an included file is
56
+ missing ([#1746]({{ site.repository }}/issues/1746))
57
+
58
+ ### Development Fixes
59
+ - Extract `Site#filter_entries` into its own object ([#1697]({{ site.repository }}/issues/1697))
60
+ - Enable Travis' bundle caching ([#1734]({{ site.repository }}/issues/1734))
61
+ - Remove trailing whitespace in some files ([#1736]({{ site.repository }}/issues/1736))
62
+ - Fix a duplicate test name ([#1754]({{ site.repository }}/issues/1754))
63
+
64
+ ### Site Enhancements
65
+ - Update link to example Rakefile to point to specific commit ([#1741]({{ site.repository }}/issues/1741))
66
+ - Fix drafts docs to indicate that draft time is based on file modification
67
+ time, not `Time.now` ([#1695]({{ site.repository }}/issues/1695))
68
+ - Add `jekyll-monthly-archive-plugin` and `jekyll-category-archive-plugin` to
69
+ list of third-party plugins ([#1693]({{ site.repository }}/issues/1693))
70
+ - Add `jekyll-asset-path-plugin` to list of third-party plugins ([#1670]({{ site.repository }}/issues/1670))
71
+ - Add `emoji-for-jekyll` to list of third-part plugins ([#1708]({{ site.repository }}/issues/1708))
72
+ - Fix previous section link on plugins page to point to pagination page ([#1707]({{ site.repository }}/issues/1707))
73
+ - Add `org-mode` converter plugin to third-party plugins ([#1711]({{ site.repository }}/issues/1711))
74
+ - Point "Blog migrations" page to http://import.jekyllrb.com ([#1732]({{ site.repository }}/issues/1732))
75
+ - Add docs for `post_url` when posts are in subdirectories ([#1718]({{ site.repository }}/issues/1718))
76
+ - Update the docs to point to `example.com` ([#1448]({{ site.repository }}/issues/1448))
77
+
78
+ ## 1.3.0 / 2013-11-04
79
+
80
+ ### Major Enhancements
81
+ - Add support for adding data as YAML files under a site's `_data`
82
+ directory ([#1003]({{ site.repository }}/issues/1003))
83
+ - Allow variables to be used with `include` tags ([#1495]({{ site.repository }}/issues/1495))
84
+ - Allow using gems for plugin management ([#1557]({{ site.repository }}/issues/1557))
85
+
86
+ ### Minor Enhancements
87
+ - Decrease the specificity in the site template CSS ([#1574]({{ site.repository }}/issues/1574))
88
+ - Add `encoding` configuration option ([#1449]({{ site.repository }}/issues/1449))
89
+ - Provide better error handling for Jekyll's custom Liquid tags
90
+ ([#1514]({{ site.repository }}/issues/1514))
91
+ - If an included file causes a Liquid error, add the path to the
92
+ include file that caused the error to the error message ([#1596]({{ site.repository }}/issues/1596))
93
+ - If a layout causes a Liquid error, change the error message so that
94
+ we know it comes from the layout ([#1601]({{ site.repository }}/issues/1601))
95
+ - Update Kramdown dependency to `~> 1.2` ([#1610]({{ site.repository }}/issues/1610))
96
+ - Update `safe_yaml` dependency to `~> 0.9.7` ([#1602]({{ site.repository }}/issues/1602))
97
+ - Allow layouts to be in subfolders like includes ([#1622]({{ site.repository }}/issues/1622))
98
+ - Switch to listen for site watching while serving ([#1589]({{ site.repository }}/issues/1589))
99
+ - Add a `json` liquid filter to be used in sites ([#1651]({{ site.repository }}/issues/1651))
100
+ - Point people to the migration docs when the `jekyll-import` gem is
101
+ missing ([#1662]({{ site.repository }}/issues/1662))
102
+
103
+ ### Bug Fixes
104
+ - Fix up matching against source and destination when the two
105
+ locations are similar ([#1556]({{ site.repository }}/issues/1556))
106
+ - Fix the missing `pathname` require in certain cases ([#1255]({{ site.repository }}/issues/1255))
107
+ - Use `+` instead of `Array#concat` when building `Post` attribute list ([#1571]({{ site.repository }}/issues/1571))
108
+ - Print server address when launching a server ([#1586]({{ site.repository }}/issues/1586))
109
+ - Downgrade to Maruku `~> 0.6.0` in order to avoid changes in rendering ([#1598]({{ site.repository }}/issues/1598))
110
+ - Fix error with failing include tag when variable was file name ([#1613]({{ site.repository }}/issues/1613))
111
+ - Downcase lexers before passing them to pygments ([#1615]({{ site.repository }}/issues/1615))
112
+ - Capitalize the short verbose switch because it conflicts with the
113
+ built-in Commander switch ([#1660]({{ site.repository }}/issues/1660))
114
+ - Fix compatibility with 1.8.x ([#1665]({{ site.repository }}/issues/1665))
115
+ - Fix an error with the new file watching code due to library version
116
+ incompatibilities ([#1687]({{ site.repository }}/issues/1687))
117
+
118
+ ### Development Fixes
119
+ - Add coverage reporting with Coveralls ([#1539]({{ site.repository }}/issues/1539))
120
+ - Refactor the Liquid `include` tag ([#1490]({{ site.repository }}/issues/1490))
121
+ - Update launchy dependency to `~> 2.3` ([#1608]({{ site.repository }}/issues/1608))
122
+ - Update rr dependency to `~> 1.1` ([#1604]({{ site.repository }}/issues/1604))
123
+ - Update cucumber dependency to `~> 1.3` ([#1607]({{ site.repository }}/issues/1607))
124
+ - Update coveralls dependency to `~> 0.7.0` ([#1606]({{ site.repository }}/issues/1606))
125
+ - Update rake dependency to `~> 10.1` ([#1603]({{ site.repository }}/issues/1603))
126
+ - Clean up `site.rb` comments to be more concise/uniform ([#1616]({{ site.repository }}/issues/1616))
127
+ - Use the master branch for the build badge in the readme ([#1636]({{ site.repository }}/issues/1636))
128
+ - Refactor Site#render ([#1638]({{ site.repository }}/issues/1638))
129
+ - Remove duplication in command line options ([#1637]({{ site.repository }}/issues/1637))
130
+ - Add tests for all the coderay options ([#1543]({{ site.repository }}/issues/1543))
131
+ - Improve some of the cucumber test code ([#1493]({{ site.repository }}/issues/1493))
132
+ - Improve comparisons of timestamps by ignoring the seconds ([#1582]({{ site.repository }}/issues/1582))
133
+
134
+ ### Site Enhancements
135
+ - Fix params for `JekyllImport::WordPress.process` arguments ([#1554]({{ site.repository }}/issues/1554))
136
+ - Add `jekyll-suggested-tweet` to list of third-party plugins ([#1555]({{ site.repository }}/issues/1555))
137
+ - Link to Liquid's docs for tags and filters ([#1553]({{ site.repository }}/issues/1553))
138
+ - Add note about installing Xcode on the Mac in the Installation docs ([#1561]({{ site.repository }}/issues/1561))
139
+ - Simplify/generalize pagination docs ([#1577]({{ site.repository }}/issues/1577))
140
+ - Add documentation for the new data sources feature ([#1503]({{ site.repository }}/issues/1503))
141
+ - Add more information on how to create generators ([#1590]({{ site.repository }}/issues/1590), [#1592]({{ site.repository }}/issues/1592))
142
+ - Improve the instructions for mimicking GitHub Flavored Markdown
143
+ ([#1614]({{ site.repository }}/issues/1614))
144
+ - Add `jekyll-import` warning note of missing dependencies ([#1626]({{ site.repository }}/issues/1626))
145
+ - Fix grammar in the Usage section ([#1635]({{ site.repository }}/issues/1635))
146
+ - Add documentation for the use of gems as plugins ([#1656]({{ site.repository }}/issues/1656))
147
+ - Document the existence of a few additional plugins ([#1405]({{ site.repository }}/issues/1405))
148
+ - Document that the `date_to_string` always returns a two digit day ([#1663]({{ site.repository }}/issues/1663))
149
+ - Fix navigation in the "Working with Drafts" page ([#1667]({{ site.repository }}/issues/1667))
150
+ - Fix an error with the data documentation ([#1691]({{ site.repository }}/issues/1691))
151
+
152
+ ## 1.2.1 / 2013-09-14
153
+
154
+ ### Minor Enhancements
155
+ - Print better messages for detached server. Mute output on detach. ([#1518]({{ site.repository }}/issues/1518))
156
+ - Disable reverse lookup when running `jekyll serve` ([#1363]({{ site.repository }}/issues/1363))
157
+ - Upgrade RedCarpet dependency to `~> 2.3.0` ([#1515]({{ site.repository }}/issues/1515))
158
+ - Upgrade to Liquid `>= 2.5.2, < 2.6` ([#1536]({{ site.repository }}/issues/1536))
159
+
160
+ ### Bug Fixes
161
+ - Fix file discrepancy in gemspec ([#1522]({{ site.repository }}/issues/1522))
162
+ - Force rendering of Include tag ([#1525]({{ site.repository }}/issues/1525))
163
+
164
+ ### Development Fixes
165
+ - Add a rake task to generate a new release post ([#1404]({{ site.repository }}/issues/1404))
166
+ - Mute LSI output in tests ([#1531]({{ site.repository }}/issues/1531))
167
+ - Update contributor documentation ([#1537]({{ site.repository }}/issues/1537))
168
+
169
+ ### Site Enhancements
170
+ - Fix a couple of validation errors on the site ([#1511]({{ site.repository }}/issues/1511))
171
+ - Make navigation menus reusable ([#1507]({{ site.repository }}/issues/1507))
172
+ - Fix link to History page from Release v1.2.0 notes post.
173
+ - Fix markup in History file for command line options ([#1512]({{ site.repository }}/issues/1512))
174
+ - Expand 1.2 release post title to 1.2.0 ([#1516]({{ site.repository }}/issues/1516))
175
+
176
+ ## 1.2.0 / 2013-09-06
177
+
178
+ ### Major Enhancements
179
+ - Disable automatically-generated excerpts when `excerpt_separator` is `""`. ([#1386]({{ site.repository }}/issues/1386))
180
+ - Add checking for URL conflicts when running `jekyll doctor` ([#1389]({{ site.repository }}/issues/1389))
181
+
182
+ ### Minor Enhancements
183
+ - Catch and fix invalid `paginate` values ([#1390]({{ site.repository }}/issues/1390))
184
+ - Remove superfluous `div.container` from the default html template for
185
+ `jekyll new` ([#1315]({{ site.repository }}/issues/1315))
186
+ - Add `-D` short-form switch for the drafts option ([#1394]({{ site.repository }}/issues/1394))
187
+ - Update the links in the site template for Twitter and GitHub ([#1400]({{ site.repository }}/issues/1400))
188
+ - Update dummy email address to example.com domain ([#1408]({{ site.repository }}/issues/1408))
189
+ - Update normalize.css to v2.1.2 and minify; add rake task to update
190
+ normalize.css with greater ease. ([#1430]({{ site.repository }}/issues/1430))
191
+ - Add the ability to detach the server ran by `jekyll serve` from it's
192
+ controlling terminal ([#1443]({{ site.repository }}/issues/1443))
193
+ - Improve permalink generation for URLs with special characters ([#944]({{ site.repository }}/issues/944))
194
+ - Expose the current Jekyll version to posts and pages via a new
195
+ `jekyll.version` variable ([#1481]({{ site.repository }}/issues/1481))
196
+
197
+ ### Bug Fixes
198
+ - Markdown extension matching matches only exact matches ([#1382]({{ site.repository }}/issues/1382))
199
+ - Fixed NoMethodError when message passed to `Stevenson#message` is nil ([#1388]({{ site.repository }}/issues/1388))
200
+ - Use binary mode when writing file ([#1364]({{ site.repository }}/issues/1364))
201
+ - Fix 'undefined method `encoding` for "mailto"' errors w/ Ruby 1.8 and
202
+ Kramdown > 0.14.0 ([#1397]({{ site.repository }}/issues/1397))
203
+ - Do not force the permalink to be a dir if it ends on .html ([#963]({{ site.repository }}/issues/963))
204
+ - When a Liquid Exception is caught, show the full path rel. to site source ([#1415]({{ site.repository }}/issues/1415))
205
+ - Properly read in the config options when serving the docs locally
206
+ ([#1444]({{ site.repository }}/issues/1444))
207
+ - Fixed `--layouts` option for `build` and `serve` commands ([#1458]({{ site.repository }}/issues/1458))
208
+ - Remove kramdown as a runtime dependency since it's optional ([#1498]({{ site.repository }}/issues/1498))
209
+ - Provide proper error handling for invalid file names in the include
210
+ tag ([#1494]({{ site.repository }}/issues/1494))
211
+
212
+ ### Development Fixes
213
+ - Remove redundant argument to
214
+ Jekyll::Commands::New#scaffold_post_content ([#1356]({{ site.repository }}/issues/1356))
215
+ - Add new dependencies to the README ([#1360]({{ site.repository }}/issues/1360))
216
+ - Fix link to contributing page in README ([#1424]({{ site.repository }}/issues/1424))
217
+ - Update TomDoc in Pager#initialize to match params ([#1441]({{ site.repository }}/issues/1441))
218
+ - Refactor `Site#cleanup` into `Jekyll::Site::Cleaner` class ([#1429]({{ site.repository }}/issues/1429))
219
+ - Several other small minor refactorings ([#1341]({{ site.repository }}/issues/1341))
220
+ - Ignore `_site` in jekyllrb.com deploy ([#1480]({{ site.repository }}/issues/1480))
221
+ - Add Gem version and dependency badge to README ([#1497]({{ site.repository }}/issues/1497))
222
+
223
+ ### Site Enhancements
224
+ - Add info about new releases ([#1353]({{ site.repository }}/issues/1353))
225
+ - Update plugin list with jekyll-rss plugin ([#1354]({{ site.repository }}/issues/1354))
226
+ - Update the site list page with Ruby's official site ([#1358]({{ site.repository }}/issues/1358))
227
+ - Add `jekyll-ditaa` to list of third-party plugins ([#1370]({{ site.repository }}/issues/1370))
228
+ - Add `postfiles` to list of third-party plugins ([#1373]({{ site.repository }}/issues/1373))
229
+ - For internal links, use full path including trailing `/` ([#1411]({{ site.repository }}/issues/1411))
230
+ - Use curly apostrophes in the docs ([#1419]({{ site.repository }}/issues/1419))
231
+ - Update the docs for Redcarpet in Jekyll ([#1418]({{ site.repository }}/issues/1418))
232
+ - Add `pluralize` and `reading_time` filters to docs ([#1439]({{ site.repository }}/issues/1439))
233
+ - Fix markup for the Kramdown options ([#1445]({{ site.repository }}/issues/1445))
234
+ - Fix typos in the History file ([#1454]({{ site.repository }}/issues/1454))
235
+ - Add trailing slash to site's post URL ([#1462]({{ site.repository }}/issues/1462))
236
+ - Clarify that `--config` will take multiple files ([#1474]({{ site.repository }}/issues/1474))
237
+ - Fix docs/templates.md private gist example ([#1477]({{ site.repository }}/issues/1477))
238
+ - Use `site.repository` for Jekyll's GitHub URL ([#1463]({{ site.repository }}/issues/1463))
239
+ - Add `jekyll-pageless-redirects` to list of third-party plugins ([#1486]({{ site.repository }}/issues/1486))
240
+ - Clarify that `date_to_xmlschema` returns an ISO 8601 string ([#1488]({{ site.repository }}/issues/1488))
241
+ - Add `jekyll-good-include` to list of third-party plugins ([#1491]({{ site.repository }}/issues/1491))
242
+ - XML escape the blog post title in our feed ([#1501]({{ site.repository }}/issues/1501))
243
+ - Add `jekyll-toc-generator` to list of third-party plugins ([#1506]({{ site.repository }}/issues/1506))
244
+
245
+ ## 1.1.2 / 2013-07-25
246
+
247
+ ### Bug Fixes
248
+ - Require Liquid 2.5.1 ([#1349]({{ site.repository }}/issues/1349))
249
+
250
+ ## 1.1.1 / 2013-07-24
251
+
252
+ ### Minor Enhancements
253
+ - Remove superfluous `table` selector from main.css in `jekyll new` template ([#1328]({{ site.repository }}/issues/1328))
254
+ - Abort with non-zero exit codes ([#1338]({{ site.repository }}/issues/1338))
255
+
256
+ ### Bug Fixes
257
+ - Fix up the rendering of excerpts ([#1339]({{ site.repository }}/issues/1339))
258
+
259
+ ### Site Enhancements
260
+ - Add Jekyll Image Tag to the plugins list ([#1306]({{ site.repository }}/issues/1306))
261
+ - Remove erroneous statement that `site.pages` are sorted alphabetically.
262
+ - Add info about the `_drafts` directory to the directory structure
263
+ docs ([#1320]({{ site.repository }}/issues/1320))
264
+ - Improve the layout of the plugin listing by organizing it into
265
+ categories ([#1310]({{ site.repository }}/issues/1310))
266
+ - Add generator-jekyllrb and grunt-jekyll to plugins page ([#1330]({{ site.repository }}/issues/1330))
267
+ - Mention Kramdown as option for markdown parser on Extras page ([#1318]({{ site.repository }}/issues/1318))
268
+ - Update Quick-Start page to include reminder that all requirements must be installed ([#1327]({{ site.repository }}/issues/1327))
269
+ - Change filename in `include` example to an HTML file so as not to indicate that Jekyll
270
+ will automatically convert them. ([#1303]({{ site.repository }}/issues/1303))
271
+ - Add an RSS feed for commits to Jekyll ([#1343]({{ site.repository }}/issues/1343))
272
+
273
+ ## 1.1.0 / 2013-07-14
274
+
275
+ ### Major Enhancements
276
+ - Add `docs` subcommand to read Jekyll's docs when offline. ([#1046]({{ site.repository }}/issues/1046))
277
+ - Support passing parameters to templates in `include` tag ([#1204]({{ site.repository }}/issues/1204))
278
+ - Add support for Liquid tags to post excerpts ([#1302]({{ site.repository }}/issues/1302))
279
+
280
+ ### Minor Enhancements
281
+ - Search the hierarchy of pagination path up to site root to determine template page for
282
+ pagination. ([#1198]({{ site.repository }}/issues/1198))
283
+ - Add the ability to generate a new Jekyll site without a template ([#1171]({{ site.repository }}/issues/1171))
284
+ - Use redcarpet as the default markdown engine in newly generated
285
+ sites ([#1245]({{ site.repository }}/issues/1245), [#1247]({{ site.repository }}/issues/1247))
286
+ - Add `redcarpet` as a runtime dependency so `jekyll build` works out-of-the-box for new
287
+ sites. ([#1247]({{ site.repository }}/issues/1247))
288
+ - In the generated site, remove files that will be replaced by a
289
+ directory ([#1118]({{ site.repository }}/issues/1118))
290
+ - Fail loudly if a user-specified configuration file doesn't exist ([#1098]({{ site.repository }}/issues/1098))
291
+ - Allow for all options for Kramdown HTML Converter ([#1201]({{ site.repository }}/issues/1201))
292
+
293
+ ### Bug Fixes
294
+ - Fix pagination in subdirectories. ([#1198]({{ site.repository }}/issues/1198))
295
+ - Fix an issue with directories and permalinks that have a plus sign
296
+ (+) in them ([#1215]({{ site.repository }}/issues/1215))
297
+ - Provide better error reporting when generating sites ([#1253]({{ site.repository }}/issues/1253))
298
+ - Latest posts first in non-LSI `related_posts` ([#1271]({{ site.repository }}/issues/1271))
299
+
300
+ ### Development Fixes
301
+ - Merge the theme and layout cucumber steps into one step ([#1151]({{ site.repository }}/issues/1151))
302
+ - Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
303
+ - Include/exclude deprecation handling simplification ([#1284]({{ site.repository }}/issues/1284))
304
+ - Convert README to Markdown. ([#1267]({{ site.repository }}/issues/1267))
305
+ - Refactor Jekyll::Site ([#1144]({{ site.repository }}/issues/1144))
306
+
307
+ ### Site Enhancements
308
+ - Add "News" section for release notes, along with an RSS feed ([#1093]({{ site.repository }}/issues/1093), [#1285]({{ site.repository }}/issues/1285), [#1286]({{ site.repository }}/issues/1286))
309
+ - Add "History" page.
310
+ - Restructured docs sections to include "Meta" section.
311
+ - Add message to "Templates" page that specifies that Python must be installed in order
312
+ to use Pygments. ([#1182]({{ site.repository }}/issues/1182))
313
+ - Update link to the official Maruku repo ([#1175]({{ site.repository }}/issues/1175))
314
+ - Add documentation about `paginate_path` to "Templates" page in docs ([#1129]({{ site.repository }}/issues/1129))
315
+ - Give the quick-start guide its own page ([#1191]({{ site.repository }}/issues/1191))
316
+ - Update ProTip on Installation page in docs to point to all the info about Pygments and
317
+ the 'highlight' tag. ([#1196]({{ site.repository }}/issues/1196))
318
+ - Run `site/img` through ImageOptim (thanks [@qrush](https://github.com/qrush)!) ([#1208]({{ site.repository }}/issues/1208))
319
+ - Added Jade Converter to `site/docs/plugins` ([#1210]({{ site.repository }}/issues/1210))
320
+ - Fix location of docs pages in Contributing pages ([#1214]({{ site.repository }}/issues/1214))
321
+ - Add ReadInXMinutes plugin to the plugin list ([#1222]({{ site.repository }}/issues/1222))
322
+ - Remove plugins from the plugin list that have equivalents in Jekyll
323
+ proper ([#1223]({{ site.repository }}/issues/1223))
324
+ - Add jekyll-assets to the plugin list ([#1225]({{ site.repository }}/issues/1225))
325
+ - Add jekyll-pandoc-mulitple-formats to the plugin list ([#1229]({{ site.repository }}/issues/1229))
326
+ - Remove dead link to "Using Git to maintain your blog" ([#1227]({{ site.repository }}/issues/1227))
327
+ - Tidy up the third-party plugins listing ([#1228]({{ site.repository }}/issues/1228))
328
+ - Update contributor information ([#1192]({{ site.repository }}/issues/1192))
329
+ - Update URL of article about Blogger migration ([#1242]({{ site.repository }}/issues/1242))
330
+ - Specify that RedCarpet is the default for new Jekyll sites on Quickstart page ([#1247]({{ site.repository }}/issues/1247))
331
+ - Added site.pages to Variables page in docs ([#1251]({{ site.repository }}/issues/1251))
332
+ - Add Youku and Tudou Embed link on Plugins page. ([#1250]({{ site.repository }}/issues/1250))
333
+ - Add note that `gist` tag supports private gists. ([#1248]({{ site.repository }}/issues/1248))
334
+ - Add `jekyll-timeago` to list of third-party plugins. ([#1260]({{ site.repository }}/issues/1260))
335
+ - Add `jekyll-swfobject` to list of third-party plugins. ([#1263]({{ site.repository }}/issues/1263))
336
+ - Add `jekyll-picture-tag` to list of third-party plugins. ([#1280]({{ site.repository }}/issues/1280))
337
+ - Update the GitHub Pages documentation regarding relative URLs
338
+ ([#1291]({{ site.repository }}/issues/1291))
339
+ - Update the S3 deployment documentation ([#1294]({{ site.repository }}/issues/1294))
340
+ - Add suggestion for Xcode CLT install to troubleshooting page in docs ([#1296]({{ site.repository }}/issues/1296))
341
+ - Add 'Working with drafts' page to docs ([#1289]({{ site.repository }}/issues/1289))
342
+ - Add information about time zones to the documentation for a page's
343
+ date ([#1304]({{ site.repository }}/issues/1304))
344
+
345
+ ## 1.0.3 / 2013-06-07
346
+
347
+ ### Minor Enhancements
348
+ - Add support to gist tag for private gists. ([#1189]({{ site.repository }}/issues/1189))
349
+ - Fail loudly when MaRuKu errors out ([#1190]({{ site.repository }}/issues/1190))
350
+ - Move the building of related posts into their own class ([#1057]({{ site.repository }}/issues/1057))
351
+ - Removed trailing spaces in several places throughout the code ([#1116]({{ site.repository }}/issues/1116))
352
+ - Add a `--force` option to `jekyll new` ([#1115]({{ site.repository }}/issues/1115))
353
+ - Convert IDs in the site template to classes ([#1170]({{ site.repository }}/issues/1170))
354
+
355
+ ### Bug Fixes
356
+ - Fix typo in Stevenson constant "ERROR". ([#1166]({{ site.repository }}/issues/1166))
357
+ - Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106]({{ site.repository }}/issues/1106))
358
+ - Exit with a non-zero exit code when dealing with a Liquid error ([#1121]({{ site.repository }}/issues/1121))
359
+ - Make the `exclude` and `include` options backwards compatible with
360
+ versions of Jekyll prior to 1.0 ([#1114]({{ site.repository }}/issues/1114))
361
+ - Fix pagination on Windows ([#1063]({{ site.repository }}/issues/1063))
362
+ - Fix the application of Pygments' Generic Output style to Go code
363
+ ([#1156]({{ site.repository }}/issues/1156))
364
+
365
+ ### Site Enhancements
366
+ - Add a Pro Tip to docs about front matter variables being optional ([#1147]({{ site.repository }}/issues/1147))
367
+ - Add changelog to site as History page in /docs/ ([#1065]({{ site.repository }}/issues/1065))
368
+ - Add note to Upgrading page about new config options in 1.0.x ([#1146]({{ site.repository }}/issues/1146))
369
+ - Documentation for `date_to_rfc822` and `uri_escape` ([#1142]({{ site.repository }}/issues/1142))
370
+ - Documentation highlight boxes shouldn't show scrollbars if not necessary ([#1123]({{ site.repository }}/issues/1123))
371
+ - Add link to jekyll-minibundle in the doc's plugins list ([#1035]({{ site.repository }}/issues/1035))
372
+ - Quick patch for importers documentation
373
+ - Fix prefix for WordpressDotCom importer in docs ([#1107]({{ site.repository }}/issues/1107))
374
+ - Add jekyll-contentblocks plugin to docs ([#1068]({{ site.repository }}/issues/1068))
375
+ - Make code bits in notes look more natural, more readable ([#1089]({{ site.repository }}/issues/1089))
376
+ - Fix logic for `relative_permalinks` instructions on Upgrading page ([#1101]({{ site.repository }}/issues/1101))
377
+ - Add docs for post excerpt ([#1072]({{ site.repository }}/issues/1072))
378
+ - Add docs for gist tag ([#1072]({{ site.repository }}/issues/1072))
379
+ - Add docs indicating that Pygments does not need to be installed
380
+ separately ([#1099]({{ site.repository }}/issues/1099), [#1119]({{ site.repository }}/issues/1119))
381
+ - Update the migrator docs to be current ([#1136]({{ site.repository }}/issues/1136))
382
+ - Add the Jekyll Gallery Plugin to the plugin list ([#1143]({{ site.repository }}/issues/1143))
383
+
384
+ ### Development Fixes
385
+ - Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149]({{ site.repository }}/issues/1149))
386
+ - Fix pesky Cucumber infinite loop ([#1139]({{ site.repository }}/issues/1139))
387
+ - Do not write posts with timezones in Cucumber tests ([#1124]({{ site.repository }}/issues/1124))
388
+ - Use ISO formatted dates in Cucumber features ([#1150]({{ site.repository }}/issues/1150))
389
+
390
+ ## 1.0.2 / 2013-05-12
391
+
392
+ ### Major Enhancements
393
+ - Add `jekyll doctor` command to check site for any known compatibility problems ([#1081]({{ site.repository }}/issues/1081))
394
+ - Backwards-compatibilize relative permalinks ([#1081]({{ site.repository }}/issues/1081))
395
+
396
+ ### Minor Enhancements
397
+ - Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066]({{ site.repository }}/issues/1066))
398
+ - Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084]({{ site.repository }}/issues/1084))
399
+ - Update pygments.rb version to 0.5.0 ([#1061]({{ site.repository }}/issues/1061))
400
+ - Update Kramdown version to 1.0.2 ([#1067]({{ site.repository }}/issues/1067))
401
+
402
+ ### Bug Fixes
403
+ - Fix issue when categories are numbers ([#1078]({{ site.repository }}/issues/1078))
404
+ - Catching that Redcarpet gem isn't installed ([#1059]({{ site.repository }}/issues/1059))
405
+
406
+ ### Site Enhancements
407
+ - Add documentation about `relative_permalinks` ([#1081]({{ site.repository }}/issues/1081))
408
+ - Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079]({{ site.repository }}/issues/1079))
409
+ - Move pages to be Pages for realz ([#985]({{ site.repository }}/issues/985))
410
+ - Updated links to Liquid documentation ([#1073]({{ site.repository }}/issues/1073))
411
+
412
+ ## 1.0.1 / 2013-05-08
413
+
414
+ ### Minor Enhancements
415
+ - Do not force use of toc_token when using generate_tok in RDiscount ([#1048]({{ site.repository }}/issues/1048))
416
+ - Add newer `language-` class name prefix to code blocks ([#1037]({{ site.repository }}/issues/1037))
417
+ - Commander error message now preferred over process abort with incorrect args ([#1040]({{ site.repository }}/issues/1040))
418
+
419
+ ### Bug Fixes
420
+ - Make Redcarpet respect the pygments configuration option ([#1053]({{ site.repository }}/issues/1053))
421
+ - Fix the index build with LSI ([#1045]({{ site.repository }}/issues/1045))
422
+ - Don't print deprecation warning when no arguments are specified. ([#1041]({{ site.repository }}/issues/1041))
423
+ - Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032]({{ site.repository }}/issues/1032))
424
+
425
+ ### Site Enhancements
426
+ - Changed https to http in the GitHub Pages link ([#1051]({{ site.repository }}/issues/1051))
427
+ - Remove CSS cruft, fix typos, fix HTML errors ([#1028]({{ site.repository }}/issues/1028))
428
+ - Removing manual install of Pip and Distribute ([#1025]({{ site.repository }}/issues/1025))
429
+ - Updated URL for Markdown references plugin ([#1022]({{ site.repository }}/issues/1022))
430
+
431
+ ### Development Fixes
432
+ - Markdownify history file ([#1027]({{ site.repository }}/issues/1027))
433
+ - Update links on README to point to new jekyllrb.com ([#1018]({{ site.repository }}/issues/1018))
434
+
435
+ ## 1.0.0 / 2013-05-06
436
+
437
+ ### Major Enhancements
438
+ - Add `jekyll new` subcommand: generate a jekyll scaffold ([#764]({{ site.repository }}/issues/764))
439
+ - Refactored jekyll commands into subcommands: build, serve, and migrate. ([#690]({{ site.repository }}/issues/690))
440
+ - Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793]({{ site.repository }}/issues/793))
441
+ - Added ability to render drafts in `_drafts` folder via command line ([#833]({{ site.repository }}/issues/833))
442
+ - Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928]({{ site.repository }}/issues/928))
443
+
444
+ ### Minor Enhancements
445
+ - Site template HTML5-ified ([#964]({{ site.repository }}/issues/964))
446
+ - Use post's directory path when matching for the post_url tag ([#998]({{ site.repository }}/issues/998))
447
+ - Loosen dependency on Pygments so it's only required when it's needed ([#1015]({{ site.repository }}/issues/1015))
448
+ - Parse strings into Time objects for date-related Liquid filters ([#1014]({{ site.repository }}/issues/1014))
449
+ - Tell the user if there is no subcommand specified ([#1008]({{ site.repository }}/issues/1008))
450
+ - Freak out if the destination of `jekyll new` exists and is non-empty ([#981]({{ site.repository }}/issues/981))
451
+ - Add `timezone` configuration option for compilation ([#957]({{ site.repository }}/issues/957))
452
+ - Add deprecation messages for pre-1.0 CLI options ([#959]({{ site.repository }}/issues/959))
453
+ - Refactor and colorize logging ([#959]({{ site.repository }}/issues/959))
454
+ - Refactor Markdown parsing ([#955]({{ site.repository }}/issues/955))
455
+ - Added application/vnd.apple.pkpass to mime.types served by WEBrick ([#907]({{ site.repository }}/issues/907))
456
+ - Move template site to default markdown renderer ([#961]({{ site.repository }}/issues/961))
457
+ - Expose new attribute to Liquid via `page`: `page.path` ([#951]({{ site.repository }}/issues/951))
458
+ - Accept multiple config files from command line ([#945]({{ site.repository }}/issues/945))
459
+ - Add page variable to liquid custom tags and blocks ([#413]({{ site.repository }}/issues/413))
460
+ - Add paginator.previous_page_path and paginator.next_page_path ([#942]({{ site.repository }}/issues/942))
461
+ - Backwards compatibility for 'auto' ([#821]({{ site.repository }}/issues/821), [#934]({{ site.repository }}/issues/934))
462
+ - Added date_to_rfc822 used on RSS feeds ([#892]({{ site.repository }}/issues/892))
463
+ - Upgrade version of pygments.rb to 0.4.2 ([#927]({{ site.repository }}/issues/927))
464
+ - Added short month (e.g. "Sep") to permalink style options for posts ([#890]({{ site.repository }}/issues/890))
465
+ - Expose site.baseurl to Liquid templates ([#869]({{ site.repository }}/issues/869))
466
+ - Adds excerpt attribute to posts which contains first paragraph of content ([#837]({{ site.repository }}/issues/837))
467
+ - Accept custom configuration file via CLI ([#863]({{ site.repository }}/issues/863))
468
+ - Load in GitHub Pages MIME Types on `jekyll serve` ([#847]({{ site.repository }}/issues/847), [#871]({{ site.repository }}/issues/871))
469
+ - Improve debugability of error message for a malformed highlight tag ([#785]({{ site.repository }}/issues/785))
470
+ - Allow symlinked files in unsafe mode ([#824]({{ site.repository }}/issues/824))
471
+ - Add 'gist' Liquid tag to core ([#822]({{ site.repository }}/issues/822), [#861]({{ site.repository }}/issues/861))
472
+ - New format of Jekyll output ([#795]({{ site.repository }}/issues/795))
473
+ - Reinstate `--limit_posts` and `--future` switches ([#788]({{ site.repository }}/issues/788))
474
+ - Remove ambiguity from command descriptions ([#815]({{ site.repository }}/issues/815))
475
+ - Fix SafeYAML Warnings ([#807]({{ site.repository }}/issues/807))
476
+ - Relaxed Kramdown version to 0.14 ([#808]({{ site.repository }}/issues/808))
477
+ - Aliased `jekyll server` to `jekyll serve`. ([#792]({{ site.repository }}/issues/792))
478
+ - Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. ([#744]({{ site.repository }}/issues/744))
479
+ - Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them ([#768]({{ site.repository }}/issues/768))
480
+ - Rescue from import errors in Wordpress.com migrator ([#671]({{ site.repository }}/issues/671))
481
+ - Massively accelerate LSI performance ([#664]({{ site.repository }}/issues/664))
482
+ - Truncate post slugs when importing from Tumblr ([#496]({{ site.repository }}/issues/496))
483
+ - Add glob support to include, exclude option ([#743]({{ site.repository }}/issues/743))
484
+ - Layout of Page or Post defaults to 'page' or 'post', respectively ([#580]({{ site.repository }}/issues/580))
485
+ REPEALED by ([#977]({{ site.repository }}/issues/977))
486
+ - "Keep files" feature ([#685]({{ site.repository }}/issues/685))
487
+ - Output full path & name for files that don't parse ([#745]({{ site.repository }}/issues/745))
488
+ - Add source and destination directory protection ([#535]({{ site.repository }}/issues/535))
489
+ - Better YAML error message ([#718]({{ site.repository }}/issues/718))
490
+ - Bug Fixes
491
+ - Paginate in subdirectories properly ([#1016]({{ site.repository }}/issues/1016))
492
+ - Ensure post and page URLs have a leading slash ([#992]({{ site.repository }}/issues/992))
493
+ - Catch all exceptions, not just StandardError descendents ([#1007]({{ site.repository }}/issues/1007))
494
+ - Bullet-proof limit_posts option ([#1004]({{ site.repository }}/issues/1004))
495
+ - Read in YAML as UTF-8 to accept non-ASCII chars ([#836]({{ site.repository }}/issues/836))
496
+ - Fix the CLI option `--plugins` to actually accept dirs and files ([#993]({{ site.repository }}/issues/993))
497
+ - Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt ([#946]({{ site.repository }}/issues/946))
498
+ - Fix cascade problem with site.baseurl, site.port and site.host. ([#935]({{ site.repository }}/issues/935))
499
+ - Filter out directories with valid post names ([#875]({{ site.repository }}/issues/875))
500
+ - Fix symlinked static files not being correctly built in unsafe mode ([#909]({{ site.repository }}/issues/909))
501
+ - Fix integration with directory_watcher 1.4.x ([#916]({{ site.repository }}/issues/916))
502
+ - Accepting strings as arguments to jekyll-import command ([#910]({{ site.repository }}/issues/910))
503
+ - Force usage of older directory_watcher gem as 1.5 is broken ([#883]({{ site.repository }}/issues/883))
504
+ - Ensure all Post categories are downcase ([#842]({{ site.repository }}/issues/842), [#872]({{ site.repository }}/issues/872))
505
+ - Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors ([#555]({{ site.repository }}/issues/555))
506
+ - Patch for multibyte URI problem with jekyll serve ([#723]({{ site.repository }}/issues/723))
507
+ - Order plugin execution by priority ([#864]({{ site.repository }}/issues/864))
508
+ - Fixed Page#dir and Page#url for edge cases ([#536]({{ site.repository }}/issues/536))
509
+ - Fix broken post_url with posts with a time in their YAML Front-Matter ([#831]({{ site.repository }}/issues/831))
510
+ - Look for plugins under the source directory ([#654]({{ site.repository }}/issues/654))
511
+ - Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long
512
+ post names ([#775]({{ site.repository }}/issues/775))
513
+ - Force Categories to be Strings ([#767]({{ site.repository }}/issues/767))
514
+ - Safe YAML plugin to prevent vulnerability ([#777]({{ site.repository }}/issues/777))
515
+ - Add SVG support to Jekyll/WEBrick. ([#407]({{ site.repository }}/issues/407), [#406]({{ site.repository }}/issues/406))
516
+ - Prevent custom destination from causing continuous regen on watch ([#528]({{ site.repository }}/issues/528), [#820]({{ site.repository }}/issues/820), [#862]({{ site.repository }}/issues/862))
517
+
518
+ ### Site Enhancements
519
+ - Responsify ([#860]({{ site.repository }}/issues/860))
520
+ - Fix spelling, punctuation and phrasal errors ([#989]({{ site.repository }}/issues/989))
521
+ - Update quickstart instructions with `new` command ([#966]({{ site.repository }}/issues/966))
522
+ - Add docs for page.excerpt ([#956]({{ site.repository }}/issues/956))
523
+ - Add docs for page.path ([#951]({{ site.repository }}/issues/951))
524
+ - Clean up site docs to prepare for 1.0 release ([#918]({{ site.repository }}/issues/918))
525
+ - Bring site into master branch with better preview/deploy ([#709]({{ site.repository }}/issues/709))
526
+ - Redesigned site ([#583]({{ site.repository }}/issues/583))
527
+
528
+ ### Development Fixes
529
+ - Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938]({{ site.repository }}/issues/938))
530
+ - Added "features:html" rake task for debugging purposes, cleaned up
531
+ cucumber profiles ([#832]({{ site.repository }}/issues/832))
532
+ - Explicitly require HTTPS rubygems source in Gemfile ([#826]({{ site.repository }}/issues/826))
533
+ - Changed Ruby version for development to 1.9.3-p374 from p362 ([#801]({{ site.repository }}/issues/801))
534
+ - Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806]({{ site.repository }}/issues/806))
535
+ - Added script/bootstrap ([#776]({{ site.repository }}/issues/776))
536
+ - Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
537
+ of greater than 1.9 ([#771]({{ site.repository }}/issues/771))
538
+ - Switch to Simplecov for coverage report ([#765]({{ site.repository }}/issues/765))
539
+
540
+ ## 0.12.1 / 2013-02-19
541
+ ### Minor Enhancements
542
+ - Update Kramdown version to 0.14.1 ([#744]({{ site.repository }}/issues/744))
543
+ - Test Enhancements
544
+ - Update Rake version to 10.0.3 ([#744]({{ site.repository }}/issues/744))
545
+ - Update Shoulda version to 3.3.2 ([#744]({{ site.repository }}/issues/744))
546
+ - Update Redcarpet version to 2.2.2 ([#744]({{ site.repository }}/issues/744))
547
+
548
+ ## 0.12.0 / 2012-12-22
549
+ ### Minor Enhancements
550
+ - Add ability to explicitly specify included files ([#261]({{ site.repository }}/issues/261))
551
+ - Add --default-mimetype option ([#279]({{ site.repository }}/issues/279))
552
+ - Allow setting of RedCloth options ([#284]({{ site.repository }}/issues/284))
553
+ - Add post_url Liquid tag for internal post linking ([#369]({{ site.repository }}/issues/369))
554
+ - Allow multiple plugin dirs to be specified ([#438]({{ site.repository }}/issues/438))
555
+ - Inline TOC token support for RDiscount ([#333]({{ site.repository }}/issues/333))
556
+ - Add the option to specify the paginated url format ([#342]({{ site.repository }}/issues/342))
557
+ - Swap out albino for pygments.rb ([#569]({{ site.repository }}/issues/569))
558
+ - Support Redcarpet 2 and fenced code blocks ([#619]({{ site.repository }}/issues/619))
559
+ - Better reporting of Liquid errors ([#624]({{ site.repository }}/issues/624))
560
+ - Bug Fixes
561
+ - Allow some special characters in highlight names
562
+ - URL escape category names in URL generation ([#360]({{ site.repository }}/issues/360))
563
+ - Fix error with limit_posts ([#442]({{ site.repository }}/issues/442))
564
+ - Properly select dotfile during directory scan ([#363]({{ site.repository }}/issues/363), [#431]({{ site.repository }}/issues/431), [#377]({{ site.repository }}/issues/377))
565
+ - Allow setting of Kramdown smart_quotes ([#482]({{ site.repository }}/issues/482))
566
+ - Ensure front-matter is at start of file ([#562]({{ site.repository }}/issues/562))
567
+
568
+ ## 0.11.2 / 2011-12-27
569
+ - Bug Fixes
570
+ - Fix gemspec
571
+
572
+ ## 0.11.1 / 2011-12-27
573
+ - Bug Fixes
574
+ - Fix extra blank line in highlight blocks ([#409]({{ site.repository }}/issues/409))
575
+ - Update dependencies
576
+
577
+ ## 0.11.0 / 2011-07-10
578
+ ### Major Enhancements
579
+ - Add command line importer functionality ([#253]({{ site.repository }}/issues/253))
580
+ - Add Redcarpet Markdown support ([#318]({{ site.repository }}/issues/318))
581
+ - Make markdown/textile extensions configurable ([#312]({{ site.repository }}/issues/312))
582
+ - Add `markdownify` filter
583
+
584
+ ### Minor Enhancements
585
+ - Switch to Albino gem
586
+ - Bundler support
587
+ - Use English library to avoid hoops ([#292]({{ site.repository }}/issues/292))
588
+ - Add Posterous importer ([#254]({{ site.repository }}/issues/254))
589
+ - Fixes for Wordpress importer ([#274]({{ site.repository }}/issues/274), [#252]({{ site.repository }}/issues/252), [#271]({{ site.repository }}/issues/271))
590
+ - Better error message for invalid post date ([#291]({{ site.repository }}/issues/291))
591
+ - Print formatted fatal exceptions to stdout on build failure
592
+ - Add Tumblr importer ([#323]({{ site.repository }}/issues/323))
593
+ - Add Enki importer ([#320]({{ site.repository }}/issues/320))
594
+ - Bug Fixes
595
+ - Secure additional path exploits
596
+
597
+ ## 0.10.0 / 2010-12-16
598
+ - Bug Fixes
599
+ - Add --no-server option.
600
+
601
+ ## 0.9.0 / 2010-12-15
602
+ ### Minor Enhancements
603
+ - Use OptionParser's `[no-]` functionality for better boolean parsing.
604
+ - Add Drupal migrator ([#245]({{ site.repository }}/issues/245))
605
+ - Complain about YAML and Liquid errors ([#249]({{ site.repository }}/issues/249))
606
+ - Remove orphaned files during regeneration ([#247]({{ site.repository }}/issues/247))
607
+ - Add Marley migrator ([#28]({{ site.repository }}/issues/28))
608
+
609
+ ## 0.8.0 / 2010-11-22
610
+ ### Minor Enhancements
611
+ - Add wordpress.com importer ([#207]({{ site.repository }}/issues/207))
612
+ - Add --limit-posts cli option ([#212]({{ site.repository }}/issues/212))
613
+ - Add uri_escape filter ([#234]({{ site.repository }}/issues/234))
614
+ - Add --base-url cli option ([#235]({{ site.repository }}/issues/235))
615
+ - Improve MT migrator ([#238]({{ site.repository }}/issues/238))
616
+ - Add kramdown support ([#239]({{ site.repository }}/issues/239))
617
+ - Bug Fixes
618
+ - Fixed filename basename generation ([#208]({{ site.repository }}/issues/208))
619
+ - Set mode to UTF8 on Sequel connections ([#237]({{ site.repository }}/issues/237))
620
+ - Prevent `_includes` dir from being a symlink
621
+
622
+ ## 0.7.0 / 2010-08-24
623
+ ### Minor Enhancements
624
+ - Add support for rdiscount extensions ([#173]({{ site.repository }}/issues/173))
625
+ - Bug Fixes
626
+ - Highlight should not be able to render local files
627
+ - The site configuration may not always provide a 'time' setting ([#184]({{ site.repository }}/issues/184))
628
+
629
+ ## 0.6.2 / 2010-06-25
630
+ - Bug Fixes
631
+ - Fix Rakefile 'release' task (tag pushing was missing origin)
632
+ - Ensure that RedCloth is loaded when textilize filter is used ([#183]({{ site.repository }}/issues/183))
633
+ - Expand source, destination, and plugin paths ([#180]({{ site.repository }}/issues/180))
634
+ - Fix page.url to include full relative path ([#181]({{ site.repository }}/issues/181))
635
+
636
+ ## 0.6.1 / 2010-06-24
637
+ - Bug Fixes
638
+ - Fix Markdown Pygments prefix and suffix ([#178]({{ site.repository }}/issues/178))
639
+
640
+ ## 0.6.0 / 2010-06-23
641
+ ### Major Enhancements
642
+ - Proper plugin system ([#19]({{ site.repository }}/issues/19), [#100]({{ site.repository }}/issues/100))
643
+ - Add safe mode so unsafe converters/generators can be added
644
+ - Maruku is now the only processor dependency installed by default.
645
+ Other processors will be lazy-loaded when necessary (and prompt the
646
+ user to install them when necessary) ([#57]({{ site.repository }}/issues/57))
647
+
648
+ ### Minor Enhancements
649
+ - Inclusion/exclusion of future dated posts ([#59]({{ site.repository }}/issues/59))
650
+ - Generation for a specific time ([#59]({{ site.repository }}/issues/59))
651
+ - Allocate site.time on render not per site_payload invocation ([#59]({{ site.repository }}/issues/59))
652
+ - Pages now present in the site payload and can be used through the
653
+ site.pages and site.html_pages variables
654
+ - Generate phase added to site#process and pagination is now a generator
655
+ - Switch to RakeGem for build/test process
656
+ - Only regenerate static files when they have changed ([#142]({{ site.repository }}/issues/142))
657
+ - Allow arbitrary options to Pygments ([#31]({{ site.repository }}/issues/31))
658
+ - Allow URL to be set via command line option ([#147]({{ site.repository }}/issues/147))
659
+ - Bug Fixes
660
+ - Render highlighted code for non markdown/textile pages ([#116]({{ site.repository }}/issues/116))
661
+ - Fix highlighting on Ruby 1.9 ([#65]({{ site.repository }}/issues/65))
662
+ - Fix extension munging when pretty permalinks are enabled ([#64]({{ site.repository }}/issues/64))
663
+ - Stop sorting categories ([#33]({{ site.repository }}/issues/33))
664
+ - Preserve generated attributes over front matter ([#119]({{ site.repository }}/issues/119))
665
+ - Fix source directory binding using Dir.pwd ([#75]({{ site.repository }}/issues/75))
666
+
667
+ ## 0.5.7 / 2010-01-12
668
+ ### Minor Enhancements
669
+ - Allow overriding of post date in the front matter ([#62]({{ site.repository }}/issues/62), [#38]({{ site.repository }}/issues/38))
670
+ - Bug Fixes
671
+ - Categories isn't always an array ([#73]({{ site.repository }}/issues/73))
672
+ - Empty tags causes error in read_posts ([#84]({{ site.repository }}/issues/84))
673
+ - Fix pagination to adhere to read/render/write paradigm
674
+ - Test Enhancement
675
+ - cucumber features no longer use site.posts.first where a better
676
+ alternative is available
677
+
678
+ ## 0.5.6 / 2010-01-08
679
+ - Bug Fixes
680
+ - Require redcloth >= 4.2.1 in tests ([#92]({{ site.repository }}/issues/92))
681
+ - Don't break on triple dashes in yaml frontmatter ([#93]({{ site.repository }}/issues/93))
682
+
683
+ ### Minor Enhancements
684
+ - Allow .mkd as markdown extension
685
+ - Use $stdout/err instead of constants ([#99]({{ site.repository }}/issues/99))
686
+ - Properly wrap code blocks ([#91]({{ site.repository }}/issues/91))
687
+ - Add javascript mime type for webrick ([#98]({{ site.repository }}/issues/98))
688
+
689
+ ## 0.5.5 / 2010-01-08
690
+ - Bug Fixes
691
+ - Fix pagination % 0 bug ([#78]({{ site.repository }}/issues/78))
692
+ - Ensure all posts are processed first ([#71]({{ site.repository }}/issues/71))
693
+
694
+ ## NOTE
695
+ - After this point I will no longer be giving credit in the history;
696
+ that is what the commit log is for.
697
+
698
+ ## 0.5.4 / 2009-08-23
699
+ - Bug Fixes
700
+ - Do not allow symlinks (security vulnerability)
701
+
702
+ ## 0.5.3 / 2009-07-14
703
+ - Bug Fixes
704
+ - Solving the permalink bug where non-html files wouldn't work
705
+ ([@jeffrydegrande](https://github.com/jeffrydegrande))
706
+
707
+ ## 0.5.2 / 2009-06-24
708
+ - Enhancements
709
+ - Added --paginate option to the executable along with a paginator object
710
+ for the payload ([@calavera](https://github.com/calavera))
711
+ - Upgraded RedCloth to 4.2.1, which makes `<notextile>` tags work once
712
+ again.
713
+ - Configuration options set in config.yml are now available through the
714
+ site payload ([@vilcans](https://github.com/vilcans))
715
+ - Posts can now have an empty YAML front matter or none at all
716
+ ([@bahuvrihi](https://github.com/bahuvrihi))
717
+ - Bug Fixes
718
+ - Fixing Ruby 1.9 issue that requires to_s on the err object
719
+ ([@Chrononaut](https://github.com/Chrononaut))
720
+ - Fixes for pagination and ordering posts on the same day ([@ujh](https://github.com/ujh))
721
+ - Made pages respect permalinks style and permalinks in yml front matter
722
+ ([@eugenebolshakov](https://github.com/eugenebolshakov))
723
+ - Index.html file should always have index.html permalink
724
+ ([@eugenebolshakov](https://github.com/eugenebolshakov))
725
+ - Added trailing slash to pretty permalink style so Apache is happy
726
+ ([@eugenebolshakov](https://github.com/eugenebolshakov))
727
+ - Bad markdown processor in config fails sooner and with better message
728
+ ([@gcnovus](https://github.com/gcnovus))
729
+ - Allow CRLFs in yaml frontmatter ([@juretta](https://github.com/juretta))
730
+ - Added Date#xmlschema for Ruby versions < 1.9
731
+
732
+ ## 0.5.1 / 2009-05-06
733
+ ### Major Enhancements
734
+ - Next/previous posts in site payload ([@pantulis](https://github.com/pantulis), [@tomo](https://github.com/tomo))
735
+ - Permalink templating system
736
+ - Moved most of the README out to the GitHub wiki
737
+ - Exclude option in configuration so specified files won't be brought over
738
+ with generated site ([@duritong](https://github.com/duritong))
739
+ - Bug Fixes
740
+ - Making sure config.yaml references are all gone, using only config.yml
741
+ - Fixed syntax highlighting breaking for UTF-8 code ([@henrik](https://github.com/henrik))
742
+ - Worked around RDiscount bug that prevents Markdown from getting parsed
743
+ after highlight ([@henrik](https://github.com/henrik))
744
+ - CGI escaped post titles ([@Chrononaut](https://github.com/Chrononaut))
745
+
746
+ ## 0.5.0 / 2009-04-07
747
+ ### Minor Enhancements
748
+ - Ability to set post categories via YAML ([@qrush](https://github.com/qrush))
749
+ - Ability to set prevent a post from publishing via YAML ([@qrush](https://github.com/qrush))
750
+ - Add textilize filter ([@willcodeforfoo](https://github.com/willcodeforfoo))
751
+ - Add 'pretty' permalink style for wordpress-like urls ([@dysinger](https://github.com/dysinger))
752
+ - Made it possible to enter categories from YAML as an array ([@Chrononaut](https://github.com/Chrononaut))
753
+ - Ignore Emacs autosave files ([@Chrononaut](https://github.com/Chrononaut))
754
+ - Bug Fixes
755
+ - Use block syntax of popen4 to ensure that subprocesses are properly disposed ([@jqr](https://github.com/jqr))
756
+ - Close open4 streams to prevent zombies ([@rtomayko](https://github.com/rtomayko))
757
+ - Only query required fields from the WP Database ([@ariejan](https://github.com/ariejan))
758
+ - Prevent `_posts` from being copied to the destination directory ([@bdimcheff](https://github.com/bdimcheff))
759
+ - Refactors
760
+ - Factored the filtering code into a method ([@Chrononaut](https://github.com/Chrononaut))
761
+ - Fix tests and convert to Shoulda ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
762
+ - Add Cucumber acceptance test suite ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
763
+
764
+ ## 0.4.1
765
+ ### Minor Enhancements
766
+ - Changed date format on wordpress converter (zeropadding) ([@dysinger](https://github.com/dysinger))
767
+ - Bug Fixes
768
+ - Add jekyll binary as executable to gemspec ([@dysinger](https://github.com/dysinger))
769
+
770
+ ## 0.4.0 / 2009-02-03
771
+ ### Major Enhancements
772
+ - Switch to Jeweler for packaging tasks
773
+
774
+ ### Minor Enhancements
775
+ - Type importer ([@codeslinger](https://github.com/codeslinger))
776
+ - site.topics accessor ([@baz](https://github.com/baz))
777
+ - Add `array_to_sentence_string` filter ([@mchung](https://github.com/mchung))
778
+ - Add a converter for textpattern ([@PerfectlyNormal](https://github.com/PerfectlyNormal))
779
+ - Add a working Mephisto / MySQL converter ([@ivey](https://github.com/ivey))
780
+ - Allowing .htaccess files to be copied over into the generated site ([@briandoll](https://github.com/briandoll))
781
+ - Add option to not put file date in permalink URL ([@mreid](https://github.com/mreid))
782
+ - Add line number capabilities to highlight blocks ([@jcon](https://github.com/jcon))
783
+ - Bug Fixes
784
+ - Fix permalink behavior ([@cavalle](https://github.com/cavalle))
785
+ - Fixed an issue with pygments, markdown, and newlines ([@zpinter](https://github.com/zpinter))
786
+ - Ampersands need to be escaped ([@pufuwozu](https://github.com/pufuwozu), [@ap](https://github.com/ap))
787
+ - Test and fix the site.categories hash ([@zzot](https://github.com/zzot))
788
+ - Fix site payload available to files ([@matrix9180](https://github.com/matrix9180))
789
+
790
+ ## 0.3.0 / 2008-12-24
791
+ ### Major Enhancements
792
+ - Added --server option to start a simple WEBrick server on destination
793
+ directory ([@johnreilly](https://github.com/johnreilly) and [@mchung](https://github.com/mchung))
794
+
795
+ ### Minor Enhancements
796
+ - Added post categories based on directories containing `_posts` ([@mreid](https://github.com/mreid))
797
+ - Added post topics based on directories underneath `_posts`
798
+ - Added new date filter that shows the full month name ([@mreid](https://github.com/mreid))
799
+ - Merge Post's YAML front matter into its to_liquid payload ([@remi](https://github.com/remi))
800
+ - Restrict includes to regular files underneath `_includes`
801
+ - Bug Fixes
802
+ - Change YAML delimiter matcher so as to not chew up 2nd level markdown
803
+ headers ([@mreid](https://github.com/mreid))
804
+ - Fix bug that meant page data (such as the date) was not available in
805
+ templates ([@mreid](https://github.com/mreid))
806
+ - Properly reject directories in `_layouts`
807
+
808
+ ## 0.2.1 / 2008-12-15
809
+ - Major Changes
810
+ - Use Maruku (pure Ruby) for Markdown by default ([@mreid](https://github.com/mreid))
811
+ - Allow use of RDiscount with --rdiscount flag
812
+
813
+ ### Minor Enhancements
814
+ - Don't load directory_watcher unless it's needed ([@pjhyett](https://github.com/pjhyett))
815
+
816
+ ## 0.2.0 / 2008-12-14
817
+ - Major Changes
818
+ - related_posts is now found in site.related_posts
819
+
820
+ ## 0.1.6 / 2008-12-13
821
+ - Major Features
822
+ - Include files in `_includes` with {% raw %}`{% include x.textile %}`{% endraw %}
823
+
824
+ ## 0.1.5 / 2008-12-12
825
+ ### Major Enhancements
826
+ - Code highlighting with Pygments if --pygments is specified
827
+ - Disable true LSI by default, enable with --lsi
828
+
829
+ ### Minor Enhancements
830
+ - Output informative message if RDiscount is not available ([@JackDanger](https://github.com/JackDanger))
831
+ - Bug Fixes
832
+ - Prevent Jekyll from picking up the output directory as a source ([@JackDanger](https://github.com/JackDanger))
833
+ - Skip `related_posts` when there is only one post ([@JackDanger](https://github.com/JackDanger))
834
+
835
+ ## 0.1.4 / 2008-12-08
836
+ - Bug Fixes
837
+ - DATA does not work properly with rubygems
838
+
839
+ ## 0.1.3 / 2008-12-06
840
+ - Major Features
841
+ - Markdown support ([@vanpelt](https://github.com/vanpelt))
842
+ - Mephisto and CSV converters ([@vanpelt](https://github.com/vanpelt))
843
+ - Code hilighting ([@vanpelt](https://github.com/vanpelt))
844
+ - Autobuild
845
+ - Bug Fixes
846
+ - Accept both \r\n and \n in YAML header ([@vanpelt](https://github.com/vanpelt))
847
+
848
+ ## 0.1.2 / 2008-11-22
849
+ - Major Features
850
+ - Add a real "related posts" implementation using Classifier
851
+ - Command Line Changes
852
+ - Allow cli to be called with 0, 1, or 2 args intuiting dir paths
853
+ if they are omitted
854
+
855
+ ## 0.1.1 / 2008-11-22
856
+ - Minor Additions
857
+ - Posts now support introspectional data e.g. {% raw %}`{{ page.url }}`{% endraw %}
858
+
859
+ ## 0.1.0 / 2008-11-05
860
+ - First release
861
+ - Converts posts written in Textile
862
+ - Converts regular site pages
863
+ - Simple copy of binary files
864
+
865
+ ## 0.0.0 / 2008-10-19
866
+ - Birthday!