jekyll-docs 3.6.0 → 3.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (253) hide show
  1. checksums.yaml +4 -4
  2. data/lib/jekyll.rb +195 -0
  3. data/lib/jekyll/cleaner.rb +110 -0
  4. data/lib/jekyll/collection.rb +230 -0
  5. data/lib/jekyll/command.rb +78 -0
  6. data/lib/jekyll/commands/build.rb +102 -0
  7. data/lib/jekyll/commands/clean.rb +43 -0
  8. data/lib/jekyll/commands/doctor.rb +153 -0
  9. data/lib/jekyll/commands/help.rb +34 -0
  10. data/lib/jekyll/commands/new.rb +156 -0
  11. data/lib/jekyll/commands/new_theme.rb +40 -0
  12. data/lib/jekyll/commands/serve.rb +245 -0
  13. data/lib/jekyll/commands/serve/servlet.rb +62 -0
  14. data/lib/jekyll/configuration.rb +410 -0
  15. data/lib/jekyll/converter.rb +54 -0
  16. data/lib/jekyll/converters/identity.rb +23 -0
  17. data/lib/jekyll/converters/markdown.rb +104 -0
  18. data/lib/jekyll/converters/markdown/kramdown_parser.rb +123 -0
  19. data/lib/jekyll/converters/markdown/rdiscount_parser.rb +35 -0
  20. data/lib/jekyll/converters/markdown/redcarpet_parser.rb +108 -0
  21. data/lib/jekyll/converters/smartypants.rb +36 -0
  22. data/lib/jekyll/convertible.rb +251 -0
  23. data/lib/jekyll/deprecator.rb +52 -0
  24. data/lib/jekyll/document.rb +507 -0
  25. data/lib/jekyll/drops/collection_drop.rb +22 -0
  26. data/lib/jekyll/drops/document_drop.rb +69 -0
  27. data/lib/jekyll/drops/drop.rb +214 -0
  28. data/lib/jekyll/drops/excerpt_drop.rb +15 -0
  29. data/lib/jekyll/drops/jekyll_drop.rb +33 -0
  30. data/lib/jekyll/drops/site_drop.rb +47 -0
  31. data/lib/jekyll/drops/static_file_drop.rb +13 -0
  32. data/lib/jekyll/drops/unified_payload_drop.rb +25 -0
  33. data/lib/jekyll/drops/url_drop.rb +88 -0
  34. data/lib/jekyll/entry_filter.rb +123 -0
  35. data/lib/jekyll/errors.rb +20 -0
  36. data/lib/jekyll/excerpt.rb +126 -0
  37. data/lib/jekyll/external.rb +74 -0
  38. data/lib/jekyll/filters.rb +430 -0
  39. data/lib/jekyll/filters/grouping_filters.rb +65 -0
  40. data/lib/jekyll/filters/url_filters.rb +60 -0
  41. data/lib/jekyll/frontmatter_defaults.rb +197 -0
  42. data/lib/jekyll/generator.rb +5 -0
  43. data/lib/jekyll/hooks.rb +104 -0
  44. data/lib/jekyll/layout.rb +62 -0
  45. data/lib/jekyll/liquid_extensions.rb +24 -0
  46. data/lib/jekyll/liquid_renderer.rb +49 -0
  47. data/lib/jekyll/liquid_renderer/file.rb +56 -0
  48. data/lib/jekyll/liquid_renderer/table.rb +96 -0
  49. data/lib/jekyll/log_adapter.rb +147 -0
  50. data/lib/jekyll/mime.types +825 -0
  51. data/lib/jekyll/page.rb +187 -0
  52. data/lib/jekyll/plugin.rb +98 -0
  53. data/lib/jekyll/plugin_manager.rb +113 -0
  54. data/lib/jekyll/publisher.rb +23 -0
  55. data/lib/jekyll/reader.rb +134 -0
  56. data/lib/jekyll/readers/collection_reader.rb +22 -0
  57. data/lib/jekyll/readers/data_reader.rb +77 -0
  58. data/lib/jekyll/readers/layout_reader.rb +71 -0
  59. data/lib/jekyll/readers/page_reader.rb +25 -0
  60. data/lib/jekyll/readers/post_reader.rb +72 -0
  61. data/lib/jekyll/readers/static_file_reader.rb +25 -0
  62. data/lib/jekyll/readers/theme_assets_reader.rb +49 -0
  63. data/lib/jekyll/regenerator.rb +201 -0
  64. data/lib/jekyll/related_posts.rb +52 -0
  65. data/lib/jekyll/renderer.rb +269 -0
  66. data/lib/jekyll/site.rb +471 -0
  67. data/lib/jekyll/static_file.rb +162 -0
  68. data/lib/jekyll/stevenson.rb +61 -0
  69. data/lib/jekyll/tags/highlight.rb +141 -0
  70. data/lib/jekyll/tags/include.rb +215 -0
  71. data/lib/jekyll/tags/link.rb +37 -0
  72. data/lib/jekyll/tags/post_url.rb +103 -0
  73. data/lib/jekyll/theme.rb +68 -0
  74. data/lib/jekyll/theme_builder.rb +119 -0
  75. data/lib/jekyll/url.rb +161 -0
  76. data/lib/jekyll/utils.rb +337 -0
  77. data/lib/jekyll/utils/ansi.rb +59 -0
  78. data/lib/jekyll/utils/exec.rb +27 -0
  79. data/lib/jekyll/utils/platforms.rb +82 -0
  80. data/lib/jekyll/utils/rouge.rb +21 -0
  81. data/lib/jekyll/utils/win_tz.rb +75 -0
  82. data/lib/jekyll/version.rb +5 -0
  83. data/lib/site_template/404.html +24 -0
  84. data/lib/site_template/_config.yml +43 -0
  85. data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +25 -0
  86. data/lib/site_template/about.md +18 -0
  87. data/lib/site_template/index.md +6 -0
  88. data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -0
  89. data/lib/theme_template/Gemfile +4 -0
  90. data/lib/theme_template/LICENSE.txt.erb +21 -0
  91. data/lib/theme_template/README.md.erb +52 -0
  92. data/lib/theme_template/_layouts/default.html +1 -0
  93. data/lib/theme_template/_layouts/page.html +5 -0
  94. data/lib/theme_template/_layouts/post.html +5 -0
  95. data/lib/theme_template/example/_config.yml.erb +1 -0
  96. data/lib/theme_template/example/_post.md +12 -0
  97. data/lib/theme_template/example/index.html +14 -0
  98. data/lib/theme_template/example/style.scss +7 -0
  99. data/lib/theme_template/gitignore.erb +5 -0
  100. data/lib/theme_template/theme.gemspec.erb +19 -0
  101. metadata +103 -156
  102. data/lib/jekyll-docs.rb +0 -31
  103. data/site/404.html +0 -153
  104. data/site/CNAME +0 -1
  105. data/site/community/index.html +0 -299
  106. data/site/conduct/index.html +0 -10
  107. data/site/css/screen.css +0 -1
  108. data/site/docs/assets/index.html +0 -724
  109. data/site/docs/code_of_conduct/index.html +0 -730
  110. data/site/docs/collections/index.html +0 -1097
  111. data/site/docs/conduct/index.html +0 -744
  112. data/site/docs/configuration/index.html +0 -1403
  113. data/site/docs/continuous-integration/buddyworks/index.html +0 -726
  114. data/site/docs/continuous-integration/circleci/index.html +0 -757
  115. data/site/docs/continuous-integration/index.html +0 -681
  116. data/site/docs/continuous-integration/travis-ci/index.html +0 -891
  117. data/site/docs/contributing/index.html +0 -863
  118. data/site/docs/datafiles/index.html +0 -780
  119. data/site/docs/deployment-methods/index.html +0 -875
  120. data/site/docs/drafts/index.html +0 -636
  121. data/site/docs/extras/index.html +0 -689
  122. data/site/docs/frontmatter/index.html +0 -807
  123. data/site/docs/github-pages/index.html +0 -819
  124. data/site/docs/history/index.html +0 -3955
  125. data/site/docs/home/index.html +0 -644
  126. data/site/docs/includes/index.html +0 -800
  127. data/site/docs/index.html +0 -10
  128. data/site/docs/installation/index.html +0 -732
  129. data/site/docs/maintaining/affinity-team-captain/index.html +0 -706
  130. data/site/docs/maintaining/avoiding-burnout/index.html +0 -709
  131. data/site/docs/maintaining/becoming-a-maintainer/index.html +0 -717
  132. data/site/docs/maintaining/index.html +0 -713
  133. data/site/docs/maintaining/merging-a-pull-request/index.html +0 -747
  134. data/site/docs/maintaining/reviewing-a-pull-request/index.html +0 -725
  135. data/site/docs/maintaining/special-labels/index.html +0 -705
  136. data/site/docs/maintaining/triaging-an-issue/index.html +0 -735
  137. data/site/docs/migrations/index.html +0 -647
  138. data/site/docs/pages/index.html +0 -695
  139. data/site/docs/pagination/index.html +0 -870
  140. data/site/docs/permalinks/index.html +0 -1027
  141. data/site/docs/plugins/index.html +0 -1800
  142. data/site/docs/posts/index.html +0 -858
  143. data/site/docs/quickstart/index.html +0 -650
  144. data/site/docs/resources/index.html +0 -769
  145. data/site/docs/sites/index.html +0 -702
  146. data/site/docs/static-files/index.html +0 -720
  147. data/site/docs/structure/index.html +0 -822
  148. data/site/docs/templates/index.html +0 -1208
  149. data/site/docs/themes/index.html +0 -935
  150. data/site/docs/troubleshooting/index.html +0 -893
  151. data/site/docs/upgrading/0-to-2/index.html +0 -826
  152. data/site/docs/upgrading/2-to-3/index.html +0 -824
  153. data/site/docs/upgrading/index.html +0 -693
  154. data/site/docs/usage/index.html +0 -705
  155. data/site/docs/variables/index.html +0 -1048
  156. data/site/docs/windows/index.html +0 -799
  157. data/site/favicon.ico +0 -0
  158. data/site/feed.xml +0 -372
  159. data/site/fonts/FontAwesome.eot +0 -0
  160. data/site/fonts/FontAwesome.svg +0 -12
  161. data/site/fonts/FontAwesome.ttf +0 -0
  162. data/site/fonts/FontAwesome.woff +0 -0
  163. data/site/github.html +0 -10
  164. data/site/help/index.html +0 -244
  165. data/site/icomoon-selection.json +0 -96
  166. data/site/img/article-footer.png +0 -0
  167. data/site/img/footer-arrow.png +0 -0
  168. data/site/img/footer-logo.png +0 -0
  169. data/site/img/jekyll-sticker.jpg +0 -0
  170. data/site/img/jekylllayoutconcept.png +0 -0
  171. data/site/img/logo-2x.png +0 -0
  172. data/site/img/logo-rss.png +0 -0
  173. data/site/img/octojekyll.png +0 -0
  174. data/site/index.html +0 -267
  175. data/site/issues.html +0 -10
  176. data/site/js/html5shiv.min.js +0 -4
  177. data/site/js/respond.min.js +0 -5
  178. data/site/latest_version.txt +0 -1
  179. data/site/news/2013/05/05/jekyll-1-0-0-released/index.html +0 -570
  180. data/site/news/2013/05/08/jekyll-1-0-1-released/index.html +0 -570
  181. data/site/news/2013/05/12/jekyll-1-0-2-released/index.html +0 -571
  182. data/site/news/2013/06/07/jekyll-1-0-3-released/index.html +0 -568
  183. data/site/news/2013/07/14/jekyll-1-1-0-released/index.html +0 -570
  184. data/site/news/2013/07/24/jekyll-1-1-1-released/index.html +0 -569
  185. data/site/news/2013/07/25/jekyll-1-0-4-released/index.html +0 -565
  186. data/site/news/2013/07/25/jekyll-1-1-2-released/index.html +0 -565
  187. data/site/news/2013/09/06/jekyll-1-2-0-released/index.html +0 -572
  188. data/site/news/2013/09/14/jekyll-1-2-1-released/index.html +0 -566
  189. data/site/news/2013/10/28/jekyll-1-3-0-rc1-released/index.html +0 -564
  190. data/site/news/2013/11/04/jekyll-1-3-0-released/index.html +0 -599
  191. data/site/news/2013/11/26/jekyll-1-3-1-released/index.html +0 -568
  192. data/site/news/2013/12/07/jekyll-1-4-0-released/index.html +0 -583
  193. data/site/news/2013/12/09/jekyll-1-4-1-released/index.html +0 -565
  194. data/site/news/2013/12/16/jekyll-1-4-2-released/index.html +0 -564
  195. data/site/news/2014/01/13/jekyll-1-4-3-released/index.html +0 -573
  196. data/site/news/2014/03/24/jekyll-1-5-0-released/index.html +0 -564
  197. data/site/news/2014/03/27/jekyll-1-5-1-released/index.html +0 -569
  198. data/site/news/2014/05/06/jekyll-turns-2-0-0/index.html +0 -585
  199. data/site/news/2014/05/08/jekyll-2-0-3-released/index.html +0 -565
  200. data/site/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/index.html +0 -567
  201. data/site/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/index.html +0 -582
  202. data/site/news/2014/07/01/jekyll-2-1-1-released/index.html +0 -579
  203. data/site/news/2014/07/29/jekyll-2-2-0-released/index.html +0 -568
  204. data/site/news/2014/08/10/jekyll-2-3-0-released/index.html +0 -588
  205. data/site/news/2014/09/09/jekyll-2-4-0-released/index.html +0 -574
  206. data/site/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/index.html +0 -597
  207. data/site/news/2014/11/09/jekyll-2-5-1-released/index.html +0 -575
  208. data/site/news/2014/11/12/jekyll-2-5-2-released/index.html +0 -565
  209. data/site/news/2014/12/17/alfredxing-welcome-to-jekyll-core/index.html +0 -572
  210. data/site/news/2014/12/22/jekyll-2-5-3-released/index.html +0 -567
  211. data/site/news/2015/01/20/jekyll-meet-and-greet/index.html +0 -568
  212. data/site/news/2015/01/24/jekyll-3-0-0-beta1-released/index.html +0 -588
  213. data/site/news/2015/02/26/introducing-jekyll-talk/index.html +0 -563
  214. data/site/news/2015/10/26/jekyll-3-0-released/index.html +0 -592
  215. data/site/news/2015/11/17/jekyll-3-0-1-released/index.html +0 -576
  216. data/site/news/2016/01/20/jekyll-3-0-2-released/index.html +0 -566
  217. data/site/news/2016/01/24/jekyll-3-1-0-released/index.html +0 -599
  218. data/site/news/2016/01/28/jekyll-3-1-1-released/index.html +0 -583
  219. data/site/news/2016/02/08/jekyll-3-0-3-released/index.html +0 -578
  220. data/site/news/2016/02/19/jekyll-3-1-2-released/index.html +0 -569
  221. data/site/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/index.html +0 -565
  222. data/site/news/2016/04/19/jekyll-3-0-4-released/index.html +0 -571
  223. data/site/news/2016/04/19/jekyll-3-1-3-released/index.html +0 -566
  224. data/site/news/2016/04/26/jekyll-3-0-5-released/index.html +0 -572
  225. data/site/news/2016/05/18/jekyll-3-1-4-released/index.html +0 -576
  226. data/site/news/2016/05/18/jekyll-3-1-5-released/index.html +0 -564
  227. data/site/news/2016/05/19/jekyll-3-1-6-released/index.html +0 -566
  228. data/site/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/index.html +0 -567
  229. data/site/news/2016/07/26/jekyll-3-2-0-released/index.html +0 -676
  230. data/site/news/2016/08/02/jekyll-3-2-1-released/index.html +0 -571
  231. data/site/news/2016/08/24/jekyll-admin-initial-release/index.html +0 -566
  232. data/site/news/2016/10/06/jekyll-3-3-is-here/index.html +0 -645
  233. data/site/news/2016/11/14/jekyll-3-3-1-released/index.html +0 -569
  234. data/site/news/2017/01/18/jekyll-3-4-0-released/index.html +0 -592
  235. data/site/news/2017/03/02/jekyll-3-4-1-released/index.html +0 -649
  236. data/site/news/2017/03/09/jekyll-3-4-2-released/index.html +0 -598
  237. data/site/news/2017/03/21/jekyll-3-4-3-released/index.html +0 -594
  238. data/site/news/2017/06/15/jekyll-3-5-0-released/index.html +0 -589
  239. data/site/news/2017/07/17/jekyll-3-5-1-released/index.html +0 -569
  240. data/site/news/2017/08/12/jekyll-3-5-2-released/index.html +0 -573
  241. data/site/news/2017/09/21/jekyll-3-6-0-released/index.html +0 -565
  242. data/site/news/index.html +0 -3609
  243. data/site/news/releases/index.html +0 -3344
  244. data/site/philosophy.html +0 -46
  245. data/site/readme.md +0 -23
  246. data/site/robots.txt +0 -1
  247. data/site/sitemap.xml +0 -485
  248. data/site/tutorials/convert-site-to-jekyll/index.html +0 -793
  249. data/site/tutorials/custom-404-page/index.html +0 -358
  250. data/site/tutorials/home/index.html +0 -323
  251. data/site/tutorials/index.html +0 -10
  252. data/site/tutorials/navigation/index.html +0 -872
  253. data/site/tutorials/orderofinterpretation/index.html +0 -441
@@ -1,3955 +0,0 @@
1
- <!DOCTYPE HTML>
2
- <html lang="en-US">
3
- <head>
4
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
- <meta charset="UTF-8">
6
- <meta name="viewport" content="width=device-width,initial-scale=1">
7
- <meta name="generator" content="Jekyll v3.6.0">
8
- <link type="application/atom+xml" rel="alternate" href="https://jekyllrb.com/feed.xml" title="Jekyll • Simple, blog-aware, static sites">
9
- <link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="https://github.com/jekyll/jekyll/commits/master.atom">
10
- <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic,900">
11
- <link rel="stylesheet" href="/css/screen.css">
12
- <link rel="icon" type="image/x-icon" href="/favicon.ico">
13
- <!-- Begin Jekyll SEO tag v2.3.0 -->
14
- <title>History | Jekyll • Simple, blog-aware, static sites</title>
15
- <meta property="og:title" content="History">
16
- <meta property="og:locale" content="en_US">
17
- <meta name="description" content="3.6.0 / 2017-09-21">
18
- <meta property="og:description" content="3.6.0 / 2017-09-21">
19
- <link rel="canonical" href="https://jekyllrb.com/docs/history/">
20
- <meta property="og:url" content="https://jekyllrb.com/docs/history/">
21
- <meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
22
- <meta property="og:type" content="article">
23
- <meta property="article:published_time" content="2017-10-24T08:07:43-07:00">
24
- <meta name="twitter:card" content="summary">
25
- <meta name="twitter:site" content="@jekyllrb">
26
- <meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
27
- <script type="application/ld+json">
28
- {"name":null,"description":"3.6.0 / 2017-09-21","url":"https://jekyllrb.com/docs/history/","headline":"History","dateModified":"2017-10-24T08:07:43-07:00","datePublished":"2017-10-24T08:07:43-07:00","sameAs":null,"@type":"BlogPosting","author":null,"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"}},"mainEntityOfPage":{"@type":"WebPage","@id":"https://jekyllrb.com/docs/history/"},"@context":"http://schema.org"}</script>
29
- <!-- End Jekyll SEO tag -->
30
-
31
- <!--[if lt IE 9]>
32
- <script src="/js/html5shiv.min.js"></script>
33
- <script src="/js/respond.min.js"></script>
34
- <![endif]-->
35
- </head>
36
-
37
-
38
- <body class="wrap">
39
- <header>
40
- <nav class="mobile-nav show-on-mobiles">
41
- <ul>
42
- <li class="">
43
- <a href="/">Home</a>
44
- </li>
45
- <li class="current">
46
- <a href="/docs/home/">Docs</a>
47
- </li>
48
- <li class="">
49
- <a href="/news/">News</a>
50
- </li>
51
- <li class="">
52
- <a href="/community/">Community</a>
53
- </li>
54
- <li class="">
55
- <a href="/help/">Help</a>
56
- </li>
57
- <li>
58
- <a href="https://github.com/jekyll/jekyll">GitHub</a>
59
- </li>
60
- </ul>
61
-
62
- </nav>
63
- <div class="grid">
64
- <div class="unit one-third center-on-mobiles">
65
- <h1>
66
- <a href="/">
67
- <span class="sr-only">Jekyll</span>
68
- <img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
69
- </a>
70
- </h1>
71
- </div>
72
- <nav class="main-nav unit two-thirds hide-on-mobiles">
73
- <ul>
74
- <li class="">
75
- <a href="/">Home</a>
76
- </li>
77
- <li class="current">
78
- <a href="/docs/home/">Docs</a>
79
- </li>
80
- <li class="">
81
- <a href="/news/">News</a>
82
- </li>
83
- <li class="">
84
- <a href="/community/">Community</a>
85
- </li>
86
- <li class="">
87
- <a href="/help/">Help</a>
88
- </li>
89
- <li>
90
- <a href="https://github.com/jekyll/jekyll">GitHub</a>
91
- </li>
92
- </ul>
93
-
94
- </nav>
95
- </div>
96
- </header>
97
-
98
-
99
- <section class="docs">
100
- <div class="grid">
101
-
102
- <div class="docs-nav-mobile unit whole show-on-mobiles">
103
- <select onchange="if (this.value) window.location.href=this.value">
104
- <option value="">Navigate the docs…</option>
105
-
106
- <optgroup label="Getting Started">
107
-
108
-
109
-
110
- <option value="/docs/home/">Welcome</option>
111
-
112
-
113
-
114
- <option value="/docs/quickstart/">Quick-start guide</option>
115
-
116
-
117
-
118
- <option value="/docs/installation/">Installation</option>
119
-
120
-
121
-
122
- <option value="/docs/windows/">Jekyll on Windows</option>
123
-
124
-
125
-
126
- <option value="/docs/usage/">Basic Usage</option>
127
-
128
-
129
-
130
- <option value="/docs/structure/">Directory structure</option>
131
-
132
-
133
-
134
- <option value="/docs/configuration/">Configuration</option>
135
-
136
-
137
- </optgroup>
138
-
139
- <optgroup label="Your Content">
140
-
141
-
142
-
143
- <option value="/docs/frontmatter/">Front Matter</option>
144
-
145
-
146
-
147
- <option value="/docs/posts/">Writing posts</option>
148
-
149
-
150
-
151
- <option value="/docs/drafts/">Working with drafts</option>
152
-
153
-
154
-
155
- <option value="/docs/pages/">Creating pages</option>
156
-
157
-
158
-
159
- <option value="/docs/static-files/">Static Files</option>
160
-
161
-
162
-
163
- <option value="/docs/variables/">Variables</option>
164
-
165
-
166
-
167
- <option value="/docs/collections/">Collections</option>
168
-
169
-
170
-
171
- <option value="/docs/datafiles/">Data Files</option>
172
-
173
-
174
-
175
- <option value="/docs/assets/">Assets</option>
176
-
177
-
178
-
179
- <option value="/docs/migrations/">Blog migrations</option>
180
-
181
-
182
- </optgroup>
183
-
184
- <optgroup label="Customization">
185
-
186
-
187
-
188
- <option value="/docs/templates/">Templates</option>
189
-
190
-
191
-
192
- <option value="/docs/includes/">Includes</option>
193
-
194
-
195
-
196
- <option value="/docs/permalinks/">Permalinks</option>
197
-
198
-
199
-
200
- <option value="/docs/pagination/">Pagination</option>
201
-
202
-
203
-
204
- <option value="/docs/plugins/">Plugins</option>
205
-
206
-
207
-
208
- <option value="/docs/themes/">Themes</option>
209
-
210
-
211
-
212
- <option value="/docs/extras/">Extras</option>
213
-
214
-
215
- </optgroup>
216
-
217
- <optgroup label="Deployment">
218
-
219
-
220
-
221
- <option value="/docs/github-pages/">GitHub Pages</option>
222
-
223
-
224
-
225
- <option value="/docs/deployment-methods/">Deployment methods</option>
226
-
227
-
228
-
229
- <option value="/docs/continuous-integration/">Continuous Integration</option>
230
-
231
-
232
- </optgroup>
233
-
234
- <optgroup label="Miscellaneous">
235
-
236
-
237
-
238
- <option value="/docs/troubleshooting/">Troubleshooting</option>
239
-
240
-
241
-
242
- <option value="/docs/sites/">Sites using Jekyll</option>
243
-
244
-
245
-
246
- <option value="/docs/resources/">Resources</option>
247
-
248
-
249
-
250
- <option value="/docs/upgrading/0-to-2/">Upgrading from 0.x to 2.x</option>
251
-
252
-
253
-
254
- <option value="/docs/upgrading/2-to-3/">Upgrading from 2.x to 3.x</option>
255
-
256
-
257
- </optgroup>
258
-
259
- <optgroup label="Meta">
260
-
261
-
262
-
263
- <option value="/docs/contributing/">Contributing</option>
264
-
265
-
266
-
267
- <option value="/docs/maintaining/">Maintaining Jekyll</option>
268
-
269
-
270
-
271
- <option value="/docs/conduct/">Code of Conduct</option>
272
-
273
-
274
-
275
- <option value="/docs/history/">History</option>
276
-
277
-
278
- </optgroup>
279
-
280
- </select>
281
- </div>
282
-
283
-
284
- <div class="unit four-fifths">
285
- <article>
286
- <div class="improve right hide-on-mobiles">
287
- <a href="https://github.com/jekyll/jekyll/edit/master/docs/_docs/history.md"><i class="fa fa-pencil"></i>  Improve this page</a>
288
- </div>
289
- <h1>History</h1>
290
- <h2 id="v3-6-0">3.6.0 / 2017-09-21</h2>
291
-
292
- <h3 id="minor-enhancements-v3-6-0">Minor Enhancements</h3>
293
-
294
- <ul>
295
- <li>Ignore final newline in folded YAML string (<a href="https://github.com/jekyll/jekyll/issues/6054">#6054</a>)</li>
296
- <li>Add URL checks to Doctor (<a href="https://github.com/jekyll/jekyll/issues/5760">#5760</a>)</li>
297
- <li>Fix serving files that clash with directories (<a href="https://github.com/jekyll/jekyll/issues/6222">#6222</a>) (<a href="https://github.com/jekyll/jekyll/issues/6231">#6231</a>)</li>
298
- <li>Bump supported Ruby version to <code class="highlighter-rouge">&gt;= 2.1.0</code> (<a href="https://github.com/jekyll/jekyll/issues/6220">#6220</a>)</li>
299
- <li>set <code class="highlighter-rouge">LiquidError#template_name</code> for errors in included file (<a href="https://github.com/jekyll/jekyll/issues/6206">#6206</a>)</li>
300
- <li>Access custom config array throughout session (<a href="https://github.com/jekyll/jekyll/issues/6200">#6200</a>)</li>
301
- <li>Add support for Rouge 2, in addition to Rouge 1 (<a href="https://github.com/jekyll/jekyll/issues/5919">#5919</a>)</li>
302
- <li>Allow <code class="highlighter-rouge">yield</code> to logger methods &amp; bail early on no-op messages (<a href="https://github.com/jekyll/jekyll/issues/6315">#6315</a>)</li>
303
- <li>Update mime-types. (<a href="https://github.com/jekyll/jekyll/issues/6336">#6336</a>)</li>
304
- <li>Use a Schwartzian transform with custom sorting (<a href="https://github.com/jekyll/jekyll/issues/6342">#6342</a>)</li>
305
- <li>Alias <code class="highlighter-rouge">Drop#invoke_drop</code> to <code class="highlighter-rouge">Drop#[]</code> (<a href="https://github.com/jekyll/jekyll/issues/6338">#6338</a>)</li>
306
- </ul>
307
-
308
- <h3 id="bug-fixes-v3-6-0">Bug Fixes</h3>
309
-
310
- <ul>
311
- <li>
312
- <code class="highlighter-rouge">Deprecator</code>: fix typo for <code class="highlighter-rouge">--serve</code> command (<a href="https://github.com/jekyll/jekyll/issues/6229">#6229</a>)</li>
313
- <li>
314
- <code class="highlighter-rouge">Reader#read_directories</code>: guard against an entry not being a directory (<a href="https://github.com/jekyll/jekyll/issues/6226">#6226</a>)</li>
315
- <li>kramdown: symbolize keys in-place (<a href="https://github.com/jekyll/jekyll/issues/6247">#6247</a>)</li>
316
- <li>Call <code class="highlighter-rouge">to_s</code> on site.url before attempting to concatenate strings (<a href="https://github.com/jekyll/jekyll/issues/6253">#6253</a>)</li>
317
- <li>Enforce Style/FrozenStringLiteralComment (<a href="https://github.com/jekyll/jekyll/issues/6265">#6265</a>)</li>
318
- <li>Update theme-template README to note &amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;assets&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>; directory (<a href="https://github.com/jekyll/jekyll/issues/6257">#6257</a>)</li>
319
- <li>Memoize the return value of <code class="highlighter-rouge">Document#url</code> (<a href="https://github.com/jekyll/jekyll/issues/6266">#6266</a>)</li>
320
- <li>delegate <code class="highlighter-rouge">StaticFile#to_json</code> to <code class="highlighter-rouge">StaticFile#to_liquid</code> (<a href="https://github.com/jekyll/jekyll/issues/6273">#6273</a>)</li>
321
- <li>Fix <code class="highlighter-rouge">Drop#key?</code> so it can handle a nil argument (<a href="https://github.com/jekyll/jekyll/issues/6281">#6281</a>)</li>
322
- <li>Guard against type error in absolute url (<a href="https://github.com/jekyll/jekyll/issues/6280">#6280</a>)</li>
323
- <li>Mutable drops should fallback to their own methods when a mutation isn&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;t present (<a href="https://github.com/jekyll/jekyll/issues/6350">#6350</a>)</li>
324
- <li>Skip adding binary files as posts (<a href="https://github.com/jekyll/jekyll/issues/6344">#6344</a>)</li>
325
- <li>Don&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;t break if bundler is not installed (<a href="https://github.com/jekyll/jekyll/issues/6377">#6377</a>)</li>
326
- </ul>
327
-
328
- <h3 id="documentation">Documentation</h3>
329
-
330
- <ul>
331
- <li>Fix a typo in <code class="highlighter-rouge">custom-404-page.md</code> (<a href="https://github.com/jekyll/jekyll/issues/6218">#6218</a>)</li>
332
- <li>Docs: fix links to issues in History.markdown (<a href="https://github.com/jekyll/jekyll/issues/6255">#6255</a>)</li>
333
- <li>Update deprecated gems key to plugins. (<a href="https://github.com/jekyll/jekyll/issues/6262">#6262</a>)</li>
334
- <li>Fixes minor typo in post text (<a href="https://github.com/jekyll/jekyll/issues/6283">#6283</a>)</li>
335
- <li>Execute build command using bundle. (<a href="https://github.com/jekyll/jekyll/issues/6274">#6274</a>)</li>
336
- <li>name unification - buddy details (<a href="https://github.com/jekyll/jekyll/issues/6317">#6317</a>)</li>
337
- <li>name unification - application index (<a href="https://github.com/jekyll/jekyll/issues/6318">#6318</a>)</li>
338
- <li>trim and relocate plugin info across docs (<a href="https://github.com/jekyll/jekyll/issues/6311">#6311</a>)</li>
339
- <li>update Jekyll&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;s README (<a href="https://github.com/jekyll/jekyll/issues/6321">#6321</a>)</li>
340
- <li>add SUPPORT file for GitHub (<a href="https://github.com/jekyll/jekyll/issues/6324">#6324</a>)</li>
341
- <li>Rename CODE_OF_CONDUCT to show in banner (<a href="https://github.com/jekyll/jekyll/issues/6325">#6325</a>)</li>
342
- <li>Docs : illustrate page.id for a collection&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;s document (<a href="https://github.com/jekyll/jekyll/issues/6329">#6329</a>)</li>
343
- <li>Docs: post&amp;<a href="https://github.com/jekyll/jekyll/issues/39">#39</a>;s date can be overriden in YAML front matter (<a href="https://github.com/jekyll/jekyll/issues/6334">#6334</a>)</li>
344
- <li>Docs: <code class="highlighter-rouge">site.url</code> behavior on development and production environments (<a href="https://github.com/jekyll/jekyll/issues/6270">#6270</a>)</li>
345
- <li>Fix typo in site.url section of variables.md :-[ (<a href="https://github.com/jekyll/jekyll/issues/6337">#6337</a>)</li>
346
- <li>Docs: updates (<a href="https://github.com/jekyll/jekyll/issues/6343">#6343</a>)</li>
347
- <li>Fix precedence docs (<a href="https://github.com/jekyll/jekyll/issues/6346">#6346</a>)</li>
348
- <li>add note to contributing docs about <code class="highlighter-rouge">script/console</code> (<a href="https://github.com/jekyll/jekyll/issues/6349">#6349</a>)</li>
349
- <li>Docs: Fix permalink example (<a href="https://github.com/jekyll/jekyll/issues/6375">#6375</a>)</li>
350
- </ul>
351
-
352
- <h3 id="site-enhancements-v3-6-0">Site Enhancements</h3>
353
-
354
- <ul>
355
- <li>Adding DevKit helpers (<a href="https://github.com/jekyll/jekyll/issues/6225">#6225</a>)</li>
356
- <li>Customizing url in collection elements clarified (<a href="https://github.com/jekyll/jekyll/issues/6264">#6264</a>)</li>
357
- <li>Plugins is the new gems (<a href="https://github.com/jekyll/jekyll/issues/6326">#6326</a>)</li>
358
- </ul>
359
-
360
- <h3 id="development-fixes-v3-6-0">Development Fixes</h3>
361
-
362
- <ul>
363
- <li>Strip unnecessary leading whitespace in template (<a href="https://github.com/jekyll/jekyll/issues/6228">#6228</a>)</li>
364
- <li>Users should be installing patch versions. (<a href="https://github.com/jekyll/jekyll/issues/6198">#6198</a>)</li>
365
- <li>Fix tests (<a href="https://github.com/jekyll/jekyll/issues/6240">#6240</a>)</li>
366
- <li>Define path with <code class="highlighter-rouge">__dir__</code> (<a href="https://github.com/jekyll/jekyll/issues/6087">#6087</a>)</li>
367
- <li>exit site.process sooner (<a href="https://github.com/jekyll/jekyll/issues/6239">#6239</a>)</li>
368
- <li>make flakey test more robust (<a href="https://github.com/jekyll/jekyll/issues/6277">#6277</a>)</li>
369
- <li>Add a quick test for DataReader (<a href="https://github.com/jekyll/jekyll/issues/6284">#6284</a>)</li>
370
- <li>script/backport-pr: commit message no longer includes the <code class="highlighter-rouge">#</code> (<a href="https://github.com/jekyll/jekyll/issues/6289">#6289</a>)</li>
371
- <li>Add Add CODEOWNERS file to help automate reviews. (<a href="https://github.com/jekyll/jekyll/issues/6320">#6320</a>)</li>
372
- <li>Fix builds on codeclimate (<a href="https://github.com/jekyll/jekyll/issues/6333">#6333</a>)</li>
373
- <li>Bump rubies on Travis (<a href="https://github.com/jekyll/jekyll/issues/6366">#6366</a>)</li>
374
- </ul>
375
-
376
- <h2 id="v3-5-2">3.5.2 / 2017-08-12</h2>
377
-
378
- <h3 id="bug-fixes-v3-5-2">Bug Fixes</h3>
379
-
380
- <ul>
381
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6281">#6281</a> for v3.5.x: Fix <code class="highlighter-rouge">Drop#key?</code> so it can handle a nil argument (<a href="https://github.com/jekyll/jekyll/issues/6288">#6288</a>)</li>
382
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6280">#6280</a> for v3.5.x: Guard against type error in <code class="highlighter-rouge">absolute_url</code> (<a href="https://github.com/jekyll/jekyll/issues/6287">#6287</a>)</li>
383
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6266">#6266</a> for v3.5.x: Memoize the return value of <code class="highlighter-rouge">Document#url</code> (<a href="https://github.com/jekyll/jekyll/issues/6301">#6301</a>)</li>
384
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6273">#6273</a> for v3.5.x: delegate <code class="highlighter-rouge">StaticFile#to_json</code> to <code class="highlighter-rouge">StaticFile#to_liquid</code> (<a href="https://github.com/jekyll/jekyll/issues/6302">#6302</a>)</li>
385
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6226">#6226</a> for v3.5.x: <code class="highlighter-rouge">Reader#read_directories</code>: guard against an entry not being a directory (<a href="https://github.com/jekyll/jekyll/issues/6304">#6304</a>)</li>
386
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6247">#6247</a> for v3.5.x: kramdown: symbolize keys in-place (<a href="https://github.com/jekyll/jekyll/issues/6303">#6303</a>)</li>
387
- </ul>
388
-
389
- <h2 id="v3-5-1">3.5.1 / 2017-07-17</h2>
390
-
391
- <h3 id="minor-enhancements-v3-5-1">Minor Enhancements</h3>
392
-
393
- <ul>
394
- <li>Use Warn for deprecation messages (<a href="https://github.com/jekyll/jekyll/issues/6192">#6192</a>)</li>
395
- <li>site template: Use plugins key instead of gems (<a href="https://github.com/jekyll/jekyll/issues/6045">#6045</a>)</li>
396
- </ul>
397
-
398
- <h3 id="bug-fixes-v3-5-1">Bug Fixes</h3>
399
-
400
- <ul>
401
- <li>Backward compatiblize URLFilters module (<a href="https://github.com/jekyll/jekyll/issues/6163">#6163</a>)</li>
402
- <li>Static files contain front matter default keys when <code class="highlighter-rouge">to_liquid</code>‘d (<a href="https://github.com/jekyll/jekyll/issues/6162">#6162</a>)</li>
403
- <li>Always normalize the result of the <code class="highlighter-rouge">relative_url</code> filter (<a href="https://github.com/jekyll/jekyll/issues/6185">#6185</a>)</li>
404
- </ul>
405
-
406
- <h3 id="documentation-1">Documentation</h3>
407
-
408
- <ul>
409
- <li>Update reference to trouble with OS X/macOS (<a href="https://github.com/jekyll/jekyll/issues/6139">#6139</a>)</li>
410
- <li>added BibSonomy plugin (<a href="https://github.com/jekyll/jekyll/issues/6143">#6143</a>)</li>
411
- <li>add plugins for multiple page pagination (<a href="https://github.com/jekyll/jekyll/issues/6055">#6055</a>)</li>
412
- <li>Update minimum Ruby version in installation.md (<a href="https://github.com/jekyll/jekyll/issues/6164">#6164</a>)</li>
413
- <li>[docs] Add information about finding a collection in <code class="highlighter-rouge">site.collections</code> (<a href="https://github.com/jekyll/jekyll/issues/6165">#6165</a>)</li>
414
- <li>Add <code class="highlighter-rouge">{% raw %}</code> to Liquid example on site (<a href="https://github.com/jekyll/jekyll/issues/6179">#6179</a>)</li>
415
- <li>Added improved Pug plugin - removed 404 Jade plugin (<a href="https://github.com/jekyll/jekyll/issues/6174">#6174</a>)</li>
416
- <li>Linking the link (<a href="https://github.com/jekyll/jekyll/issues/6210">#6210</a>)</li>
417
- <li>Small correction in documentation for includes (<a href="https://github.com/jekyll/jekyll/issues/6193">#6193</a>)</li>
418
- <li>Fix docs site page margin (<a href="https://github.com/jekyll/jekyll/issues/6214">#6214</a>)</li>
419
- </ul>
420
-
421
- <h3 id="development-fixes-v3-5-1">Development Fixes</h3>
422
-
423
- <ul>
424
- <li>Add jekyll doctor to GitHub Issue Template (<a href="https://github.com/jekyll/jekyll/issues/6169">#6169</a>)</li>
425
- <li>Test with Ruby 2.4.1-1 on AppVeyor (<a href="https://github.com/jekyll/jekyll/issues/6176">#6176</a>)</li>
426
- <li>set minimum requirement for jekyll-feed (<a href="https://github.com/jekyll/jekyll/issues/6184">#6184</a>)</li>
427
- </ul>
428
-
429
- <h2 id="v3-5-0">3.5.0 / 2017-06-18</h2>
430
-
431
- <h3 id="minor-enhancements-v3-5-0">Minor Enhancements</h3>
432
-
433
- <ul>
434
- <li>Upgrade to Liquid v4 (<a href="https://github.com/jekyll/jekyll/issues/4362">#4362</a>)</li>
435
- <li>Convert StaticFile liquid representation to a Drop &amp; add front matter defaults support to StaticFiles (<a href="https://github.com/jekyll/jekyll/issues/5871">#5871</a>)</li>
436
- <li>Add support for Tab-Separated Values data files (<code class="highlighter-rouge">*.tsv</code>) (<a href="https://github.com/jekyll/jekyll/issues/5985">#5985</a>)</li>
437
- <li>Specify version constraint in subcommand error message. (<a href="https://github.com/jekyll/jekyll/issues/5974">#5974</a>)</li>
438
- <li>Add a template for custom 404 page (<a href="https://github.com/jekyll/jekyll/issues/5945">#5945</a>)</li>
439
- <li>Require <code class="highlighter-rouge">runtime_dependencies</code> of a Gem-based theme from its <code class="highlighter-rouge">.gemspec</code> file (<a href="https://github.com/jekyll/jekyll/issues/5914">#5914</a>)</li>
440
- <li>Don’t raise an error if URL contains a colon (<a href="https://github.com/jekyll/jekyll/issues/5889">#5889</a>)</li>
441
- <li>Date filters should never raise an exception (<a href="https://github.com/jekyll/jekyll/issues/5722">#5722</a>)</li>
442
- <li>add <code class="highlighter-rouge">plugins</code> config key as replacement for <code class="highlighter-rouge">gems</code> (<a href="https://github.com/jekyll/jekyll/issues/5130">#5130</a>)</li>
443
- <li>create configuration from options only once in the boot process (<a href="https://github.com/jekyll/jekyll/issues/5487">#5487</a>)</li>
444
- <li>Add option to fail a build with front matter syntax errors (<a href="https://github.com/jekyll/jekyll/issues/5832">#5832</a>)</li>
445
- <li>Disable default layouts for documents with a <code class="highlighter-rouge">layout: none</code> declaration (<a href="https://github.com/jekyll/jekyll/issues/5933">#5933</a>)</li>
446
- <li>In <code class="highlighter-rouge">jekyll new</code>, make copied site template user-writable (<a href="https://github.com/jekyll/jekyll/issues/6072">#6072</a>)</li>
447
- <li>Add top-level <code class="highlighter-rouge">layout</code> liquid variable to Documents (<a href="https://github.com/jekyll/jekyll/issues/6073">#6073</a>)</li>
448
- <li>Address reading non-binary static files in themes (<a href="https://github.com/jekyll/jekyll/issues/5918">#5918</a>)</li>
449
- <li>Allow filters to sort &amp; select based on subvalues (<a href="https://github.com/jekyll/jekyll/issues/5622">#5622</a>)</li>
450
- <li>Add strip_index filter (<a href="https://github.com/jekyll/jekyll/issues/6075">#6075</a>)</li>
451
- </ul>
452
-
453
- <h3 id="documentation-2">Documentation</h3>
454
-
455
- <ul>
456
- <li>Install troubleshooting on Ubuntu (<a href="https://github.com/jekyll/jekyll/issues/5817">#5817</a>)</li>
457
- <li>Add Termux section on troubleshooting (<a href="https://github.com/jekyll/jekyll/issues/5837">#5837</a>)</li>
458
- <li>fix ial css classes in theme doc (<a href="https://github.com/jekyll/jekyll/issues/5876">#5876</a>)</li>
459
- <li>Update installation.md (<a href="https://github.com/jekyll/jekyll/issues/5880">#5880</a>)</li>
460
- <li>Update Aerobatic docs (<a href="https://github.com/jekyll/jekyll/issues/5883">#5883</a>)</li>
461
- <li>Add note to collections doc on hard-coded collections. (<a href="https://github.com/jekyll/jekyll/issues/5882">#5882</a>)</li>
462
- <li>Makes uri_escape template docs more specific. (<a href="https://github.com/jekyll/jekyll/issues/5887">#5887</a>)</li>
463
- <li>Remove duplicate footnote_nr from default config (<a href="https://github.com/jekyll/jekyll/issues/5891">#5891</a>)</li>
464
- <li>Fixed tutorial for publishing gem to include repo. (<a href="https://github.com/jekyll/jekyll/issues/5900">#5900</a>)</li>
465
- <li>update broken links (<a href="https://github.com/jekyll/jekyll/issues/5905">#5905</a>)</li>
466
- <li>Fix typo in contribution information (<a href="https://github.com/jekyll/jekyll/issues/5910">#5910</a>)</li>
467
- <li>update plugin repo URL to reflect repo move (<a href="https://github.com/jekyll/jekyll/issues/5916">#5916</a>)</li>
468
- <li>Update exclude array in configuration.md (<a href="https://github.com/jekyll/jekyll/issues/5947">#5947</a>)</li>
469
- <li>Fixed path in “Improve this page” link in Tutorials section (<a href="https://github.com/jekyll/jekyll/issues/5951">#5951</a>)</li>
470
- <li>Corrected permalink (<a href="https://github.com/jekyll/jekyll/issues/5949">#5949</a>)</li>
471
- <li>Included more details about adding defaults to static files (<a href="https://github.com/jekyll/jekyll/issues/5971">#5971</a>)</li>
472
- <li>Create buddyworks (<a href="https://github.com/jekyll/jekyll/issues/5962">#5962</a>)</li>
473
- <li>added (buddyworks) to ci list (<a href="https://github.com/jekyll/jekyll/issues/5965">#5965</a>)</li>
474
- <li>Add a tutorial on serving custom Error 404 page (<a href="https://github.com/jekyll/jekyll/issues/5946">#5946</a>)</li>
475
- <li>add custom 404 to tutorial navigation (<a href="https://github.com/jekyll/jekyll/issues/5978">#5978</a>)</li>
476
- <li>Add link to order of interpretation tutorial in Tutorials nav (<a href="https://github.com/jekyll/jekyll/issues/5952">#5952</a>)</li>
477
- <li>Document Jekyll’s Philosophy (<a href="https://github.com/jekyll/jekyll/issues/5792">#5792</a>)</li>
478
- <li>Require Ruby &gt; 2.1.0 (<a href="https://github.com/jekyll/jekyll/issues/5983">#5983</a>)</li>
479
- <li>Fix broken link (<a href="https://github.com/jekyll/jekyll/issues/5994">#5994</a>)</li>
480
- <li>Default options for script/proof (<a href="https://github.com/jekyll/jekyll/issues/5995">#5995</a>)</li>
481
- <li>Mention Bash on Ubuntu on Windows (<a href="https://github.com/jekyll/jekyll/issues/5960">#5960</a>)</li>
482
- <li>Document <code class="highlighter-rouge">--unpublished</code> flag introduced in 91e9ecf (<a href="https://github.com/jekyll/jekyll/issues/5959">#5959</a>)</li>
483
- <li>Update upgrading.md to mention usage of <code class="highlighter-rouge">bundle update</code> (<a href="https://github.com/jekyll/jekyll/issues/5604">#5604</a>)</li>
484
- <li>Fix missing quotation mark (<a href="https://github.com/jekyll/jekyll/issues/6002">#6002</a>)</li>
485
- <li>New tutorial: Convert an HTML site to Jekyll (<a href="https://github.com/jekyll/jekyll/issues/5881">#5881</a>)</li>
486
- <li>Revamp Permalink section (<a href="https://github.com/jekyll/jekyll/issues/5912">#5912</a>)</li>
487
- <li>Fixup tutorial on creating theme from existing HTML templates (<a href="https://github.com/jekyll/jekyll/issues/6006">#6006</a>)</li>
488
- <li>Standardise on “URLs” without apostrophe in docs (<a href="https://github.com/jekyll/jekyll/issues/6018">#6018</a>)</li>
489
- <li>Added txtpen in tutorial (<a href="https://github.com/jekyll/jekyll/issues/6021">#6021</a>)</li>
490
- <li>fix typo using past participle (<a href="https://github.com/jekyll/jekyll/issues/6026">#6026</a>)</li>
491
- <li>changed formatting to fit the style of the documentation (<a href="https://github.com/jekyll/jekyll/issues/6027">#6027</a>)</li>
492
- <li>doc fix typo word usage (<a href="https://github.com/jekyll/jekyll/issues/6028">#6028</a>)</li>
493
- <li>corrected reference to layout in index.md (<a href="https://github.com/jekyll/jekyll/issues/6032">#6032</a>)</li>
494
- <li>(Minor) Update MathJax CDN (<a href="https://github.com/jekyll/jekyll/issues/6013">#6013</a>)</li>
495
- <li>Add MvvmCross to samples (<a href="https://github.com/jekyll/jekyll/issues/6035">#6035</a>)</li>
496
- <li>Update travis-ci.md to correct procedure (<a href="https://github.com/jekyll/jekyll/issues/6043">#6043</a>)</li>
497
- <li>fix sentence in documentation (<a href="https://github.com/jekyll/jekyll/issues/6048">#6048</a>)</li>
498
- <li>rephrase a sentence in posts.md to be more direct (<a href="https://github.com/jekyll/jekyll/issues/6049">#6049</a>)</li>
499
- <li>Compress Website Sass output (<a href="https://github.com/jekyll/jekyll/issues/6009">#6009</a>)</li>
500
- <li>doc correct spelling error (<a href="https://github.com/jekyll/jekyll/issues/6050">#6050</a>)</li>
501
- <li>adjusted date-format in sitemap (<a href="https://github.com/jekyll/jekyll/issues/6053">#6053</a>)</li>
502
- <li>Typo fix (welcomed change -&gt; welcome change). (<a href="https://github.com/jekyll/jekyll/issues/6070">#6070</a>)</li>
503
- <li>Fixed documentation inconsistency (<a href="https://github.com/jekyll/jekyll/issues/6068">#6068</a>)</li>
504
- <li>Add own plugin -&gt; Jekyll Brand Social Wall (<a href="https://github.com/jekyll/jekyll/issues/6064">#6064</a>)</li>
505
- <li>Added plugin jekyll-analytics (<a href="https://github.com/jekyll/jekyll/issues/6042">#6042</a>)</li>
506
- <li>Use more precise language when explaining links (<a href="https://github.com/jekyll/jekyll/issues/6078">#6078</a>)</li>
507
- <li>Update plugins.md (<a href="https://github.com/jekyll/jekyll/issues/6088">#6088</a>)</li>
508
- <li>windows 10 tutorial (<a href="https://github.com/jekyll/jekyll/issues/6100">#6100</a>)</li>
509
- <li>Explain how to override theme styles (<a href="https://github.com/jekyll/jekyll/issues/6107">#6107</a>)</li>
510
- <li>updated Bash on Ubuntu on Windows link in tutorial (<a href="https://github.com/jekyll/jekyll/issues/6111">#6111</a>)</li>
511
- <li>Fix wording in <code class="highlighter-rouge">_docs/templates.md</code> links section (<a href="https://github.com/jekyll/jekyll/issues/6114">#6114</a>)</li>
512
- <li>Update windows.md (<a href="https://github.com/jekyll/jekyll/issues/6115">#6115</a>)</li>
513
- <li>Added windows to docs.yml (<a href="https://github.com/jekyll/jekyll/issues/6109">#6109</a>)</li>
514
- <li>Be more specific on what to upload (<a href="https://github.com/jekyll/jekyll/issues/6119">#6119</a>)</li>
515
- <li>Remove Blank Newlines from “Jekyll on Windows” Page (<a href="https://github.com/jekyll/jekyll/issues/6126">#6126</a>)</li>
516
- <li>Link the troubleshooting page in the quickstart page (<a href="https://github.com/jekyll/jekyll/issues/6134">#6134</a>)</li>
517
- <li>add documentation about the &amp;<a href="https://github.com/jekyll/jekyll/issues/34">#34</a>;pinned&amp;<a href="https://github.com/jekyll/jekyll/issues/34">#34</a>; label (<a href="https://github.com/jekyll/jekyll/issues/6147">#6147</a>)</li>
518
- <li>docs(JekyllOnWindows): Add a new Installation way (<a href="https://github.com/jekyll/jekyll/issues/6141">#6141</a>)</li>
519
- <li>corrected windows.md (<a href="https://github.com/jekyll/jekyll/issues/6149">#6149</a>)</li>
520
- <li>Refine documentation for Windows (<a href="https://github.com/jekyll/jekyll/issues/6153">#6153</a>)</li>
521
- </ul>
522
-
523
- <h3 id="development-fixes-v3-5-0">Development Fixes</h3>
524
-
525
- <ul>
526
- <li>[Rubocop] add missing comma (<a href="https://github.com/jekyll/jekyll/issues/5835">#5835</a>)</li>
527
- <li>Appease classifier-reborn (<a href="https://github.com/jekyll/jekyll/issues/5934">#5934</a>)</li>
528
- <li>Allow releases &amp; development on <code class="highlighter-rouge">*-stable</code> branches (<a href="https://github.com/jekyll/jekyll/issues/5926">#5926</a>)</li>
529
- <li>Add script/backport-pr (<a href="https://github.com/jekyll/jekyll/issues/5925">#5925</a>)</li>
530
- <li>Prefer .yaml over .toml (<a href="https://github.com/jekyll/jekyll/issues/5966">#5966</a>)</li>
531
- <li>Fix Appveyor with DST-aware cucumber steps (<a href="https://github.com/jekyll/jekyll/issues/5961">#5961</a>)</li>
532
- <li>Use Rubocop v0.47.1 till we’re ready for v0.48 (<a href="https://github.com/jekyll/jekyll/issues/5989">#5989</a>)</li>
533
- <li>Test against Ruby 2.4.0 (<a href="https://github.com/jekyll/jekyll/issues/5687">#5687</a>)</li>
534
- <li>rubocop: lib/jekyll/renderer.rb complexity fixes (<a href="https://github.com/jekyll/jekyll/issues/5052">#5052</a>)</li>
535
- <li>Use yajl-ruby 1.2.2 (now with 2.4 support) (<a href="https://github.com/jekyll/jekyll/issues/6007">#6007</a>)</li>
536
- <li>Bump Rubocop to v0.48 (<a href="https://github.com/jekyll/jekyll/issues/5997">#5997</a>)</li>
537
- <li>doc use example.com (<a href="https://github.com/jekyll/jekyll/issues/6031">#6031</a>)</li>
538
- <li>fix typo (<a href="https://github.com/jekyll/jekyll/issues/6040">#6040</a>)</li>
539
- <li>Fix CI (<a href="https://github.com/jekyll/jekyll/issues/6044">#6044</a>)</li>
540
- <li>Remove <code class="highlighter-rouge">ruby RUBY_VERSION</code> from generated Gemfile (<a href="https://github.com/jekyll/jekyll/issues/5803">#5803</a>)</li>
541
- <li>Test if hidden collections output a document with a future date (<a href="https://github.com/jekyll/jekyll/issues/6103">#6103</a>)</li>
542
- <li>Add test for uri_escape on reserved characters (<a href="https://github.com/jekyll/jekyll/issues/6086">#6086</a>)</li>
543
- <li>Allow you to specify the rouge version via an environment variable for testing (<a href="https://github.com/jekyll/jekyll/issues/6138">#6138</a>)</li>
544
- <li>Bump Rubocop to 0.49.1 (<a href="https://github.com/jekyll/jekyll/issues/6093">#6093</a>)</li>
545
- <li>Lock nokogiri to 1.7.x for Ruby 2.1 (<a href="https://github.com/jekyll/jekyll/issues/6140">#6140</a>)</li>
546
- </ul>
547
-
548
- <h3 id="site-enhancements-v3-5-0">Site Enhancements</h3>
549
-
550
- <ul>
551
- <li>Corrected date for version 3.4.0 (<a href="https://github.com/jekyll/jekyll/issues/5842">#5842</a>)</li>
552
- <li>Add the correct year to the 3.4.0 release date (<a href="https://github.com/jekyll/jekyll/issues/5858">#5858</a>)</li>
553
- <li>Add documentation about order of interpretation (<a href="https://github.com/jekyll/jekyll/issues/5834">#5834</a>)</li>
554
- <li>Documentation on how to build navigation (<a href="https://github.com/jekyll/jekyll/issues/5698">#5698</a>)</li>
555
- <li>Navigation has been moved out from docs (<a href="https://github.com/jekyll/jekyll/issues/5927">#5927</a>)</li>
556
- <li>Make links in sidebar for current page more prominent (<a href="https://github.com/jekyll/jekyll/issues/5820">#5820</a>)</li>
557
- <li>Update normalize.css to v6.0.0 (<a href="https://github.com/jekyll/jekyll/issues/6008">#6008</a>)</li>
558
- <li>Docs: rename <code class="highlighter-rouge">gems</code> to <code class="highlighter-rouge">plugins</code> (<a href="https://github.com/jekyll/jekyll/issues/6082">#6082</a>)</li>
559
- <li>plugins -&gt; gems (<a href="https://github.com/jekyll/jekyll/issues/6110">#6110</a>)</li>
560
- <li>Document difference between cgi_escape and uri_escape <a href="https://github.com/jekyll/jekyll/issues/5970">#5970</a> (<a href="https://github.com/jekyll/jekyll/issues/6081">#6081</a>)</li>
561
- </ul>
562
-
563
- <h3 id="bug-fixes-v3-5-0">Bug Fixes</h3>
564
-
565
- <ul>
566
- <li>Exclude Gemfile by default (<a href="https://github.com/jekyll/jekyll/issues/5860">#5860</a>)</li>
567
- <li>Convertible#validate_permalink!: ensure the return value of data[“permalink”] is a string before asking if it is empty (<a href="https://github.com/jekyll/jekyll/issues/5878">#5878</a>)</li>
568
- <li>Allow abbreviated post dates (<a href="https://github.com/jekyll/jekyll/issues/5920">#5920</a>)</li>
569
- <li>Remove dependency on include from default about.md (<a href="https://github.com/jekyll/jekyll/issues/5903">#5903</a>)</li>
570
- <li>Allow colons in <code class="highlighter-rouge">uri_escape</code> filter (<a href="https://github.com/jekyll/jekyll/issues/5957">#5957</a>)</li>
571
- <li>Re-surface missing public methods in <code class="highlighter-rouge">Jekyll::Document</code> (<a href="https://github.com/jekyll/jekyll/issues/5975">#5975</a>)</li>
572
- <li>absolute_url should not mangle URL if called more than once (<a href="https://github.com/jekyll/jekyll/issues/5789">#5789</a>)</li>
573
- <li>patch URLFilters to prevent <code class="highlighter-rouge">//</code> (<a href="https://github.com/jekyll/jekyll/issues/6058">#6058</a>)</li>
574
- <li>add test to ensure variables work in <code class="highlighter-rouge">where_exp</code> condition (<a href="https://github.com/jekyll/jekyll/issues/5315">#5315</a>)</li>
575
- <li>Read explicitly included dot-files in collections. (<a href="https://github.com/jekyll/jekyll/issues/6092">#6092</a>)</li>
576
- <li>Default <code class="highlighter-rouge">baseurl</code> to <code class="highlighter-rouge">nil</code> instead of empty string (<a href="https://github.com/jekyll/jekyll/issues/6137">#6137</a>)</li>
577
- <li>Filters#time helper: Duplicate time before calling #localtime. (<a href="https://github.com/jekyll/jekyll/issues/5996">#5996</a>)</li>
578
- </ul>
579
-
580
- <h2 id="v3-4-5">3.4.5 / 2017-06-30</h2>
581
-
582
- <ul>
583
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6185">#6185</a> for v3.4.x: Always normalize the result of the <code class="highlighter-rouge">relative_url</code> filter (<a href="https://github.com/jekyll/jekyll/issues/6186">#6186</a>)</li>
584
- </ul>
585
-
586
- <h2 id="v3-4-4">3.4.4 / 2017-06-17</h2>
587
-
588
- <ul>
589
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/6137">#6137</a> for v3.4.x: Default <code class="highlighter-rouge">baseurl</code> to <code class="highlighter-rouge">nil</code> instead of empty string (<a href="https://github.com/jekyll/jekyll/issues/6146">#6146</a>)</li>
590
- </ul>
591
-
592
- <h2 id="v3-4-3">3.4.3 / 2017-03-21</h2>
593
-
594
- <ul>
595
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/5957">#5957</a> for v3.4.x: Allow colons in <code class="highlighter-rouge">uri_escape</code> filter (<a href="https://github.com/jekyll/jekyll/issues/5968">#5968</a>)</li>
596
- </ul>
597
-
598
- <h2 id="v3-4-2">3.4.2 / 2017-03-09</h2>
599
-
600
- <ul>
601
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/5871">#5871</a> for v3.4.x: Convert StaticFile liquid representation to a Drop &amp; add front matter defaults support to StaticFiles (<a href="https://github.com/jekyll/jekyll/issues/5940">#5940</a>)</li>
602
- </ul>
603
-
604
- <h2 id="v3-4-1">3.4.1 / 2017-03-02</h2>
605
-
606
- <ul>
607
- <li>Backport <a href="https://github.com/jekyll/jekyll/issues/5920">#5920</a> for v3.4.x: Allow abbreviated post dates (<a href="https://github.com/jekyll/jekyll/issues/5924">#5924</a>)</li>
608
- </ul>
609
-
610
- <h2 id="v3-4-0">3.4.0 / 2017-01-27</h2>
611
-
612
- <h3 id="minor-enhancements-v3-4-0">Minor Enhancements</h3>
613
-
614
- <ul>
615
- <li>Add connector param to <code class="highlighter-rouge">array_to_sentence_string</code> filter (<a href="https://github.com/jekyll/jekyll/issues/5597">#5597</a>)</li>
616
- <li>Adds <code class="highlighter-rouge">group_by_exp</code> filter (<a href="https://github.com/jekyll/jekyll/issues/5513">#5513</a>)</li>
617
- <li>Use Addressable instead of URI to decode (<a href="https://github.com/jekyll/jekyll/issues/5726">#5726</a>)</li>
618
- <li>throw IncludeTagError if error occurs in included file (<a href="https://github.com/jekyll/jekyll/issues/5767">#5767</a>)</li>
619
- <li>Write Jekyll::Utils::Exec.run for running shell commands. (<a href="https://github.com/jekyll/jekyll/issues/5640">#5640</a>)</li>
620
- <li>Use the current year for the LICENSE of theme (<a href="https://github.com/jekyll/jekyll/issues/5712">#5712</a>)</li>
621
- <li>Update License (<a href="https://github.com/jekyll/jekyll/issues/5713">#5713</a>)</li>
622
- </ul>
623
-
624
- <h3 id="bug-fixes-v3-4-0">Bug Fixes</h3>
625
-
626
- <ul>
627
- <li>Escaped regular expressions when using <code class="highlighter-rouge">post_url</code>. (<a href="https://github.com/jekyll/jekyll/issues/5605">#5605</a>)</li>
628
- <li>fix date parsing in file names to be stricter (<a href="https://github.com/jekyll/jekyll/issues/5609">#5609</a>)</li>
629
- <li>Add a module to re-define <code class="highlighter-rouge">ENV["TZ"]</code> in Windows (<a href="https://github.com/jekyll/jekyll/issues/5612">#5612</a>)</li>
630
- <li>Use each instead of map to actually return nothing (<a href="https://github.com/jekyll/jekyll/issues/5668">#5668</a>)</li>
631
- <li>include: fix ‘no implicit conversion of nil to String’ (<a href="https://github.com/jekyll/jekyll/issues/5750">#5750</a>)</li>
632
- <li>Don’t include the theme’s includes_path if it is nil. (<a href="https://github.com/jekyll/jekyll/issues/5780">#5780</a>)</li>
633
- <li>test double slash when input = ‘/’ (<a href="https://github.com/jekyll/jekyll/issues/5542">#5542</a>)</li>
634
- <li>use logger.info for related posts (<a href="https://github.com/jekyll/jekyll/issues/5822">#5822</a>)</li>
635
- </ul>
636
-
637
- <h3 id="site-enhancements-v3-4-0">Site Enhancements</h3>
638
-
639
- <ul>
640
- <li>Use only the used Font Awesome icons. (<a href="https://github.com/jekyll/jekyll/issues/5530">#5530</a>)</li>
641
- <li>Switch to <code class="highlighter-rouge">https</code> when possible. (<a href="https://github.com/jekyll/jekyll/issues/5611">#5611</a>)</li>
642
- <li>Update <code class="highlighter-rouge">_font-awesome.scss</code> to move .woff file before .ttf (<a href="https://github.com/jekyll/jekyll/issues/5614">#5614</a>)</li>
643
- <li>Update documentation on updating FontAwesome Iconset (<a href="https://github.com/jekyll/jekyll/issues/5655">#5655</a>)</li>
644
- <li>[site] Use defaults for docs and news-items (<a href="https://github.com/jekyll/jekyll/issues/5744">#5744</a>)</li>
645
- <li>Sort gems in <code class="highlighter-rouge">docs/_config.yml</code> (<a href="https://github.com/jekyll/jekyll/issues/5746">#5746</a>)</li>
646
- <li>Add missing class (<a href="https://github.com/jekyll/jekyll/issues/5791">#5791</a>)</li>
647
- <li>Improve template docs (<a href="https://github.com/jekyll/jekyll/issues/5694">#5694</a>)</li>
648
- </ul>
649
-
650
- <h3 id="development-fixes-v3-4-0">Development Fixes</h3>
651
-
652
- <ul>
653
- <li>clean unit-test names in <code class="highlighter-rouge">test/test_tags.rb</code> (<a href="https://github.com/jekyll/jekyll/issues/5608">#5608</a>)</li>
654
- <li>Add cucumber feature to test for bonafide theme gems (<a href="https://github.com/jekyll/jekyll/issues/5384">#5384</a>)</li>
655
- <li>Use <code class="highlighter-rouge">assert_nil</code> instead of <code class="highlighter-rouge">assert_equal nil</code> (<a href="https://github.com/jekyll/jekyll/issues/5652">#5652</a>)</li>
656
- <li>Rubocop -a on lib/jekyll (<a href="https://github.com/jekyll/jekyll/issues/5666">#5666</a>)</li>
657
- <li>Bump to rake 12.0 (<a href="https://github.com/jekyll/jekyll/issues/5670">#5670</a>)</li>
658
- <li>Rubocop Gemfile (<a href="https://github.com/jekyll/jekyll/issues/5671">#5671</a>)</li>
659
- <li>update Classifier-Reborn to 2.1.0 (<a href="https://github.com/jekyll/jekyll/issues/5711">#5711</a>)</li>
660
- <li>Rubocop: fix Rakefile and gemspec (<a href="https://github.com/jekyll/jekyll/issues/5745">#5745</a>)</li>
661
- <li>Use <code class="highlighter-rouge">assert_nil</code> (<a href="https://github.com/jekyll/jekyll/issues/5725">#5725</a>)</li>
662
- <li>Sort gems in <code class="highlighter-rouge">jekyll.gemspec</code> (<a href="https://github.com/jekyll/jekyll/issues/5746">#5746</a>)</li>
663
- <li>Rubocop: Require consistent comma in multiline literals (<a href="https://github.com/jekyll/jekyll/issues/5761">#5761</a>)</li>
664
- <li>Bump rubocop (<a href="https://github.com/jekyll/jekyll/issues/5765">#5765</a>)</li>
665
- <li>New rubocop security checks (<a href="https://github.com/jekyll/jekyll/issues/5768">#5768</a>)</li>
666
- <li>test/helper: fix flaky plugin path test by removing calls to Dir.chdir without a block (<a href="https://github.com/jekyll/jekyll/issues/5779">#5779</a>)</li>
667
- <li>Use latest jemoji gem (<a href="https://github.com/jekyll/jekyll/issues/5782">#5782</a>)</li>
668
- <li>Bump htmlproofer (<a href="https://github.com/jekyll/jekyll/issues/5781">#5781</a>)</li>
669
- <li>Bump rubies we test against (<a href="https://github.com/jekyll/jekyll/issues/5784">#5784</a>)</li>
670
- <li>Bump rdoc to v5.0 (<a href="https://github.com/jekyll/jekyll/issues/5797">#5797</a>)</li>
671
- <li>Bump codeclimate-test-reporter to v1.0.5 (<a href="https://github.com/jekyll/jekyll/issues/5798">#5798</a>)</li>
672
- </ul>
673
-
674
- <h3 id="documentation-3">Documentation</h3>
675
-
676
- <ul>
677
- <li>Improve quickstart docs (<a href="https://github.com/jekyll/jekyll/issues/5689">#5689</a>)</li>
678
- <li>Add Jekyll-Post to list of plugins (<a href="https://github.com/jekyll/jekyll/issues/5705">#5705</a>)</li>
679
- <li>Add jekyll-numbered-headings (<a href="https://github.com/jekyll/jekyll/issues/5688">#5688</a>)</li>
680
- <li>Docs: move permalinks from documents into config (<a href="https://github.com/jekyll/jekyll/issues/5544">#5544</a>)</li>
681
- <li>Improve collections docs (<a href="https://github.com/jekyll/jekyll/issues/5691">#5691</a>)</li>
682
- <li>Fix <a href="https://github.com/jekyll/jekyll/issues/5730">#5730</a>: add gcc and make to the list of requirements (<a href="https://github.com/jekyll/jekyll/issues/5731">#5731</a>)</li>
683
- <li>Remove instructions to install Jekyll 2 on Windows (<a href="https://github.com/jekyll/jekyll/issues/5582">#5582</a>)</li>
684
- <li>Fix example URL inconsistency (<a href="https://github.com/jekyll/jekyll/issues/5592">#5592</a>)</li>
685
- <li>Replace backticks within HTML blocks with HTML tags (<a href="https://github.com/jekyll/jekyll/issues/5435">#5435</a>)</li>
686
- <li>Add jekyll-migrate-permalink (<a href="https://github.com/jekyll/jekyll/issues/5600">#5600</a>)</li>
687
- <li>Fix bad config YAML in collections example (<a href="https://github.com/jekyll/jekyll/issues/5587">#5587</a>)</li>
688
- <li>Bring documentation on ‘Directory Structure’ up-to-date (<a href="https://github.com/jekyll/jekyll/issues/5573">#5573</a>)</li>
689
- <li>Fixed typo (<a href="https://github.com/jekyll/jekyll/issues/5632">#5632</a>)</li>
690
- <li>use backticks for Gemfile for consistency since in the next sentence … (<a href="https://github.com/jekyll/jekyll/issues/5641">#5641</a>)</li>
691
- <li>Update Core team list in the README file (<a href="https://github.com/jekyll/jekyll/issues/5643">#5643</a>)</li>
692
- <li>Improve Permalinks documentation. (<a href="https://github.com/jekyll/jekyll/issues/5653">#5653</a>)</li>
693
- <li>Fix typo in Variables doc page (<a href="https://github.com/jekyll/jekyll/issues/5657">#5657</a>)</li>
694
- <li>Fix a couple of typos in the docs (<a href="https://github.com/jekyll/jekyll/issues/5658">#5658</a>)</li>
695
- <li>Update windows.md (<a href="https://github.com/jekyll/jekyll/issues/5683">#5683</a>)</li>
696
- <li>Improve permalinks docs (<a href="https://github.com/jekyll/jekyll/issues/5693">#5693</a>)</li>
697
- <li>Document –unpublished build option (<a href="https://github.com/jekyll/jekyll/issues/5720">#5720</a>)</li>
698
- <li>Improve pages docs (<a href="https://github.com/jekyll/jekyll/issues/5692">#5692</a>)</li>
699
- <li>Added new includes.md topic to docs (<a href="https://github.com/jekyll/jekyll/issues/5696">#5696</a>)</li>
700
- <li>Replace a dead link with a web-archived one (<a href="https://github.com/jekyll/jekyll/issues/5738">#5738</a>)</li>
701
- <li>Remove duplicate paragraph. (<a href="https://github.com/jekyll/jekyll/issues/5740">#5740</a>)</li>
702
- <li>Addition of a sample “typical post” (<a href="https://github.com/jekyll/jekyll/issues/5473">#5473</a>)</li>
703
- <li>Fix a minor grammatical mistake on themes’ document ### -dev (<a href="https://github.com/jekyll/jekyll/issues/5748">#5748</a>)</li>
704
- <li>Correct comments in data_reader.rb (<a href="https://github.com/jekyll/jekyll/issues/5621">#5621</a>)</li>
705
- <li>Add jekyll-pre-commit to plugins list (<a href="https://github.com/jekyll/jekyll/issues/5752">#5752</a>)</li>
706
- <li>Update quickstart.md (<a href="https://github.com/jekyll/jekyll/issues/5758">#5758</a>)</li>
707
- <li>Correct minor typo (<a href="https://github.com/jekyll/jekyll/issues/5764">#5764</a>)</li>
708
- <li>Fix a markdown link to look properly on the web (<a href="https://github.com/jekyll/jekyll/issues/5769">#5769</a>)</li>
709
- <li>[docs] Info about the help command usage (<a href="https://github.com/jekyll/jekyll/issues/5312">#5312</a>)</li>
710
- <li>Add missing merge labels for jekyllbot (<a href="https://github.com/jekyll/jekyll/issues/5753">#5753</a>)</li>
711
- <li>Fix broken links in documentation (<a href="https://github.com/jekyll/jekyll/issues/5736">#5736</a>)</li>
712
- <li>Docs: add <code class="highlighter-rouge">match_regex</code> and <code class="highlighter-rouge">replace_regex</code> filters (<a href="https://github.com/jekyll/jekyll/issues/5799">#5799</a>)</li>
713
- <li>Got that diaper money? (<a href="https://github.com/jekyll/jekyll/issues/5810">#5810</a>)</li>
714
- <li>Sort content by popularity using Google Analytics (<a href="https://github.com/jekyll/jekyll/issues/5812">#5812</a>)</li>
715
- <li>Rework CI doc to include multiple providers. (<a href="https://github.com/jekyll/jekyll/issues/5815">#5815</a>)</li>
716
- <li>Improve theme docs (<a href="https://github.com/jekyll/jekyll/issues/5690">#5690</a>)</li>
717
- <li>Add mention of classifier-reborn for LSI (<a href="https://github.com/jekyll/jekyll/issues/5811">#5811</a>)</li>
718
- <li>Added note about –blank flag (<a href="https://github.com/jekyll/jekyll/issues/5802">#5802</a>)</li>
719
- <li>Fixed inaccuracy in “Built-in permalink styles” docs (<a href="https://github.com/jekyll/jekyll/issues/5819">#5819</a>)</li>
720
- </ul>
721
-
722
- <h2 id="v3-3-1">3.3.1 / 2016-11-14</h2>
723
-
724
- <h3 id="minor-enhancements-v3-3-1">Minor Enhancements</h3>
725
-
726
- <ul>
727
- <li>Collapse <code class="highlighter-rouge">gsub</code> for performance (<a href="https://github.com/jekyll/jekyll/issues/5494">#5494</a>)</li>
728
- <li>URL: warn if key doesn’t exist in url drop (<a href="https://github.com/jekyll/jekyll/issues/5524">#5524</a>)</li>
729
- </ul>
730
-
731
- <h3 id="bug-fixes-v3-3-1">Bug Fixes</h3>
732
-
733
- <ul>
734
- <li>Fix typo in <code class="highlighter-rouge">theme_template</code> README (<a href="https://github.com/jekyll/jekyll/issues/5472">#5472</a>)</li>
735
- <li>Do not swallow all exceptions on render (<a href="https://github.com/jekyll/jekyll/issues/5495">#5495</a>)</li>
736
- <li>Site template: fixed <code class="highlighter-rouge">_config.yml</code> comment typo (<a href="https://github.com/jekyll/jekyll/issues/5511">#5511</a>)</li>
737
- <li>
738
- <code class="highlighter-rouge">jekyll new-theme</code> should specify Jekyll as a runtime dependency for the theme (<a href="https://github.com/jekyll/jekyll/issues/5457">#5457</a>)</li>
739
- <li>Be much more specific about ignoring specific vendored directories. (<a href="https://github.com/jekyll/jekyll/issues/5564">#5564</a>)</li>
740
- <li>Only warn about auto-regeneration bug on Bash On Windows. (<a href="https://github.com/jekyll/jekyll/issues/5464">#5464</a>)</li>
741
- <li>Allow permalink template to have underscores (<a href="https://github.com/jekyll/jekyll/issues/5572">#5572</a>)</li>
742
- </ul>
743
-
744
- <h3 id="site-enhancements-v3-3-1">Site Enhancements</h3>
745
-
746
- <ul>
747
- <li>Documentation: <code class="highlighter-rouge">link</code> Liquid tag (<a href="https://github.com/jekyll/jekyll/issues/5449">#5449</a>)</li>
748
- <li>Updating install instruction link for Jekyll 3 on Windows (<a href="https://github.com/jekyll/jekyll/issues/5475">#5475</a>)</li>
749
- <li>Update normalize.css to v5.0.0 (<a href="https://github.com/jekyll/jekyll/issues/5471">#5471</a>)</li>
750
- <li>Add jekyll-data to the list of plugins (<a href="https://github.com/jekyll/jekyll/issues/5491">#5491</a>)</li>
751
- <li>Add info about checking version + updating (<a href="https://github.com/jekyll/jekyll/issues/5497">#5497</a>)</li>
752
- <li>Add jekyll-include-absolute-plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/5492">#5492</a>)</li>
753
- <li>Remove jekyll-hook from deployment methods (<a href="https://github.com/jekyll/jekyll/issues/5502">#5502</a>)</li>
754
- <li>Update deployment-methods.md (<a href="https://github.com/jekyll/jekyll/issues/5504">#5504</a>)</li>
755
- <li>Ubuntu users should install ruby2.3-dev (<a href="https://github.com/jekyll/jekyll/issues/5512">#5512</a>)</li>
756
- <li>Remove Glynn as deployment option (<a href="https://github.com/jekyll/jekyll/issues/5519">#5519</a>)</li>
757
- <li>Fix broken forum link (<a href="https://github.com/jekyll/jekyll/issues/5466">#5466</a>)</li>
758
- <li>Move documentation to docs folder (<a href="https://github.com/jekyll/jekyll/issues/5459">#5459</a>)</li>
759
- <li>Fix broken links in CONTRIBUTING (<a href="https://github.com/jekyll/jekyll/issues/5533">#5533</a>)</li>
760
- <li>Update documentation on jekyllrb.com (<a href="https://github.com/jekyll/jekyll/issues/5540">#5540</a>)</li>
761
- <li>Fix HTML rendering (<a href="https://github.com/jekyll/jekyll/issues/5536">#5536</a>)</li>
762
- <li>Remove outdated deployment information (<a href="https://github.com/jekyll/jekyll/issues/5557">#5557</a>)</li>
763
- <li>no more invalid US-ASCII on lines 30 and 97 (<a href="https://github.com/jekyll/jekyll/issues/5520">#5520</a>)</li>
764
- <li>Add permalinks to docs in ‘/maintaining/’ (<a href="https://github.com/jekyll/jekyll/issues/5532">#5532</a>)</li>
765
- <li>Add jekyll-pinboard to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/5514">#5514</a>)</li>
766
- <li>Fix formatting in 2-to-3.md (<a href="https://github.com/jekyll/jekyll/issues/5507">#5507</a>)</li>
767
- <li>Add two plugins to the plugins page (<a href="https://github.com/jekyll/jekyll/issues/5493">#5493</a>)</li>
768
- <li>Use site.baseurl before link and post_url tags (<a href="https://github.com/jekyll/jekyll/issues/5559">#5559</a>)</li>
769
- <li>Fix link to jekyll-pinboard plugin (<a href="https://github.com/jekyll/jekyll/issues/5570">#5570</a>)</li>
770
- <li>mention <code class="highlighter-rouge">docs</code> folder as a way to deploy on GitHub Pages (<a href="https://github.com/jekyll/jekyll/issues/5571">#5571</a>)</li>
771
- </ul>
772
-
773
- <h3 id="development-fixes-v3-3-1">Development Fixes</h3>
774
-
775
- <ul>
776
- <li>fix rubocop errors on testing with Rubocop 0.44 (<a href="https://github.com/jekyll/jekyll/issues/5489">#5489</a>)</li>
777
- <li>script/test: add missing whitespace (<a href="https://github.com/jekyll/jekyll/issues/5479">#5479</a>)</li>
778
- <li>Restrict Rubocop version (<a href="https://github.com/jekyll/jekyll/issues/5496">#5496</a>)</li>
779
- <li>include a hashbang for all benchmark scripts &amp; make them executable (<a href="https://github.com/jekyll/jekyll/issues/5505">#5505</a>)</li>
780
- <li>Update source in script/proof (<a href="https://github.com/jekyll/jekyll/issues/5538">#5538</a>)</li>
781
- <li>Collections.feature: conditional steps to have it pass on Windows (<a href="https://github.com/jekyll/jekyll/issues/5546">#5546</a>)</li>
782
- <li>Fix tests to get script/test to pass on Windows (<a href="https://github.com/jekyll/jekyll/issues/5526">#5526</a>)</li>
783
- </ul>
784
-
785
- <h2 id="v3-3-0">3.3.0 / 2016-10-06</h2>
786
-
787
- <h3 id="minor-enhancements-v3-3-0">Minor Enhancements</h3>
788
-
789
- <ul>
790
- <li>Colorize interpolated output in logger.info (<a href="https://github.com/jekyll/jekyll/issues/5239">#5239</a>)</li>
791
- <li>Site template: exclude Gemfile and Gemfile.lock in site config (<a href="https://github.com/jekyll/jekyll/issues/5293">#5293</a>)</li>
792
- <li>Fix <a href="https://github.com/jekyll/jekyll/issues/5233">#5233</a>: Increase our ability to detect Windows. (<a href="https://github.com/jekyll/jekyll/issues/5235">#5235</a>)</li>
793
- <li>update gitignore template to ignore theme gems built by user (<a href="https://github.com/jekyll/jekyll/issues/5326">#5326</a>)</li>
794
- <li>Adds ability to link to all files (<a href="https://github.com/jekyll/jekyll/issues/5199">#5199</a>)</li>
795
- <li>Exclude vendor by default (<a href="https://github.com/jekyll/jekyll/issues/5361">#5361</a>)</li>
796
- <li>Add ThemeAssetsReader which reads assets from a theme (<a href="https://github.com/jekyll/jekyll/issues/5364">#5364</a>)</li>
797
- <li>Add bundle install to jekyll new command (<a href="https://github.com/jekyll/jekyll/issues/5237">#5237</a>)</li>
798
- <li>Add absolute_url and relative_url filters. (<a href="https://github.com/jekyll/jekyll/issues/5399">#5399</a>)</li>
799
- <li>Site template: remove <code class="highlighter-rouge">css/</code> from new site scaffolding (<a href="https://github.com/jekyll/jekyll/issues/5402">#5402</a>)</li>
800
- <li>Site template: Move contents of the index.html page to the ‘home’ layout (<a href="https://github.com/jekyll/jekyll/issues/5420">#5420</a>)</li>
801
- <li>Exclude node_modules by default (<a href="https://github.com/jekyll/jekyll/issues/5210">#5210</a>)</li>
802
- <li>Run hooks in priority order. (<a href="https://github.com/jekyll/jekyll/issues/5157">#5157</a>)</li>
803
- <li>Add <code class="highlighter-rouge">static_file.name</code> and <code class="highlighter-rouge">.basename</code> Liquid attributes (<a href="https://github.com/jekyll/jekyll/issues/5264">#5264</a>)</li>
804
- <li>set site.url in dev environment to <code class="highlighter-rouge">http://localhost:4000</code> (<a href="https://github.com/jekyll/jekyll/issues/5431">#5431</a>)</li>
805
- <li>Add support for indented link references on excerpt (<a href="https://github.com/jekyll/jekyll/issues/5212">#5212</a>)</li>
806
- </ul>
807
-
808
- <h3 id="bug-fixes-v3-3-0">Bug Fixes</h3>
809
-
810
- <ul>
811
- <li>Use jekyll-feed to generate the default site’s RSS feed (<a href="https://github.com/jekyll/jekyll/issues/5196">#5196</a>)</li>
812
- <li>Site#configure_theme: do not set theme unless it’s a string (<a href="https://github.com/jekyll/jekyll/issues/5189">#5189</a>)</li>
813
- <li>Convertible: set self.output in #render_all_layouts and #do_layout (<a href="https://github.com/jekyll/jekyll/issues/5337">#5337</a>)</li>
814
- <li>Only complain about <code class="highlighter-rouge">kramdown.coderay</code> if it is actually in the config (<a href="https://github.com/jekyll/jekyll/issues/5380">#5380</a>)</li>
815
- <li>Clarify documentation in theme gem’s README template (<a href="https://github.com/jekyll/jekyll/issues/5376">#5376</a>)</li>
816
- <li>Allow underscore in highlighter language (<a href="https://github.com/jekyll/jekyll/issues/5375">#5375</a>)</li>
817
- <li>Site template: set empty url in config file by default (<a href="https://github.com/jekyll/jekyll/issues/5338">#5338</a>)</li>
818
- <li>Site template config: prepend ‘jekyll serve’ with ‘bundle exec’ (<a href="https://github.com/jekyll/jekyll/issues/5430">#5430</a>)</li>
819
- <li>Don’t call <code class="highlighter-rouge">File.utime</code> for StaticFiles if it’s a symlink (<a href="https://github.com/jekyll/jekyll/issues/5427">#5427</a>)</li>
820
- <li>Fix handling of non-ASCII characters in new <code class="highlighter-rouge">*_url</code> filters (<a href="https://github.com/jekyll/jekyll/issues/5410">#5410</a>)</li>
821
- <li>Remove autoload of Draft which no longer exists. (<a href="https://github.com/jekyll/jekyll/issues/5441">#5441</a>)</li>
822
- <li>Fix issue where Windows drive name is stripped from Jekyll.sanitized_path incorrectly (<a href="https://github.com/jekyll/jekyll/issues/5256">#5256</a>)</li>
823
- <li>Fix bug where <code class="highlighter-rouge">post_url</code> tag matched incorrect post with subdirectory (<a href="https://github.com/jekyll/jekyll/issues/4873">#4873</a>)</li>
824
- <li>Fix loading data from subdir with a period in name (<a href="https://github.com/jekyll/jekyll/issues/5433">#5433</a>)</li>
825
- <li>Revert Commands::Serve#server_address signature change. (<a href="https://github.com/jekyll/jekyll/issues/5456">#5456</a>)</li>
826
- </ul>
827
-
828
- <h3 id="site-enhancements-v3-3-0">Site Enhancements</h3>
829
-
830
- <ul>
831
- <li>Document <code class="highlighter-rouge">to_integer</code> and <code class="highlighter-rouge">inspect</code> filters (<a href="https://github.com/jekyll/jekyll/issues/5185">#5185</a>)</li>
832
- <li>Fix path in the prompt (<a href="https://github.com/jekyll/jekyll/issues/5194">#5194</a>)</li>
833
- <li>need subcommand build (<a href="https://github.com/jekyll/jekyll/issues/5190">#5190</a>)</li>
834
- <li>Add the Jekyll Cloudinary plugin (<a href="https://github.com/jekyll/jekyll/issues/5183">#5183</a>)</li>
835
- <li>Documentation : <code class="highlighter-rouge">new-theme</code> command (<a href="https://github.com/jekyll/jekyll/issues/5205">#5205</a>)</li>
836
- <li>Document <code class="highlighter-rouge">link</code> Liquid tag (<a href="https://github.com/jekyll/jekyll/issues/5182">#5182</a>)</li>
837
- <li>Remove mention of page for link tag in release post (<a href="https://github.com/jekyll/jekyll/issues/5214">#5214</a>)</li>
838
- <li>fixed typo (<a href="https://github.com/jekyll/jekyll/issues/5226">#5226</a>)</li>
839
- <li>Add missing comma (<a href="https://github.com/jekyll/jekyll/issues/5222">#5222</a>)</li>
840
- <li>Maintain aspect ratio with <code class="highlighter-rouge">height: auto;</code> (<a href="https://github.com/jekyll/jekyll/issues/5254">#5254</a>)</li>
841
- <li>Fix a link in deployment-methods.md (<a href="https://github.com/jekyll/jekyll/issues/5244">#5244</a>)</li>
842
- <li>Documentation: improve highlight in <code class="highlighter-rouge">Creating a theme</code> (<a href="https://github.com/jekyll/jekyll/issues/5249">#5249</a>)</li>
843
- <li>Bundler isn’t installed by default (<a href="https://github.com/jekyll/jekyll/issues/5258">#5258</a>)</li>
844
- <li>Update troubleshooting documentation to include fix for issue with vendored gems (<a href="https://github.com/jekyll/jekyll/issues/5271">#5271</a>)</li>
845
- <li>Link <code class="highlighter-rouge">--lsi</code> option’s description to Wikipedia docs on LSI (<a href="https://github.com/jekyll/jekyll/issues/5274">#5274</a>)</li>
846
- <li>Document <code class="highlighter-rouge">--profile</code> option on the configuration page (<a href="https://github.com/jekyll/jekyll/issues/5279">#5279</a>)</li>
847
- <li>Update homepage to sync with merge of <a href="https://github.com/jekyll/jekyll/issues/5258">#5258</a> (<a href="https://github.com/jekyll/jekyll/issues/5287">#5287</a>)</li>
848
- <li>Add post about Jekyll Admin initial release (<a href="https://github.com/jekyll/jekyll/issues/5291">#5291</a>)</li>
849
- <li>Replace liquid highlight tag with backticks (<a href="https://github.com/jekyll/jekyll/issues/5262">#5262</a>)</li>
850
- <li>Word update (<a href="https://github.com/jekyll/jekyll/issues/5294">#5294</a>)</li>
851
- <li>Site documentation section links always point to https://jekyllrb.com (<a href="https://github.com/jekyll/jekyll/issues/5281">#5281</a>)</li>
852
- <li>Missing <code class="highlighter-rouge">:site, :post_render</code> payload documentation on site (<a href="https://github.com/jekyll/jekyll/issues/5280">#5280</a>)</li>
853
- <li>Site: exclude README.md and .gitignore (<a href="https://github.com/jekyll/jekyll/issues/5304">#5304</a>)</li>
854
- <li>Add link to Staticman (<a href="https://github.com/jekyll/jekyll/issues/5224">#5224</a>)</li>
855
- <li>Update url for OpenShift (<a href="https://github.com/jekyll/jekyll/issues/5320">#5320</a>)</li>
856
- <li>[docs] add help for missing static_file e.g. on heroku (<a href="https://github.com/jekyll/jekyll/issues/5334">#5334</a>)</li>
857
- <li>Add a line about updating theme-gems in the docs (<a href="https://github.com/jekyll/jekyll/issues/5318">#5318</a>)</li>
858
- <li>Explain how to copy a theme’s files (<a href="https://github.com/jekyll/jekyll/issues/5335">#5335</a>)</li>
859
- <li>[docs] .md as default extension in examples (<a href="https://github.com/jekyll/jekyll/issues/5316">#5316</a>)</li>
860
- <li>Fix small typo in docs (<a href="https://github.com/jekyll/jekyll/issues/5347">#5347</a>)</li>
861
- <li>Add missing period to sentence in first paragraph. (<a href="https://github.com/jekyll/jekyll/issues/5372">#5372</a>)</li>
862
- <li>added jekyll-spotify plugin (<a href="https://github.com/jekyll/jekyll/issues/5369">#5369</a>)</li>
863
- <li>Add jekyll-menus to the list of plugins. (<a href="https://github.com/jekyll/jekyll/issues/5397">#5397</a>)</li>
864
- <li>macOS and one grammar fix (<a href="https://github.com/jekyll/jekyll/issues/5403">#5403</a>)</li>
865
- <li>Add documentation for <code class="highlighter-rouge">relative_url</code> and <code class="highlighter-rouge">absolute_url</code> (<a href="https://github.com/jekyll/jekyll/issues/5405">#5405</a>)</li>
866
- <li>Bugfix on logo in JSON-LD (<a href="https://github.com/jekyll/jekyll/issues/5421">#5421</a>)</li>
867
- <li>Fix Travis.ci documentation (<a href="https://github.com/jekyll/jekyll/issues/5413">#5413</a>)</li>
868
- <li>[docs] Update documentation regarding <code class="highlighter-rouge">bundle install</code> after <code class="highlighter-rouge">jekyll new</code> (<a href="https://github.com/jekyll/jekyll/issues/5428">#5428</a>)</li>
869
- <li>Replace classic box-sizing reset with inheritance reset (<a href="https://github.com/jekyll/jekyll/issues/5411">#5411</a>)</li>
870
- <li>Update Wikipedia YAML list link (<a href="https://github.com/jekyll/jekyll/issues/5452">#5452</a>)</li>
871
- <li>Add Jekyll 3.3 release post (<a href="https://github.com/jekyll/jekyll/issues/5442">#5442</a>)</li>
872
- </ul>
873
-
874
- <h3 id="development-fixes-v3-3-0">Development Fixes</h3>
875
-
876
- <ul>
877
- <li>Update appveyor.yml and fix optional deps for Ruby x64 (<a href="https://github.com/jekyll/jekyll/issues/5180">#5180</a>)</li>
878
- <li>Improve tests for Jekyll::PluginManager (<a href="https://github.com/jekyll/jekyll/issues/5167">#5167</a>)</li>
879
- <li>Update Ruby versions in travis.yml (<a href="https://github.com/jekyll/jekyll/issues/5221">#5221</a>)</li>
880
- <li>Avoid installing unecessary gems for site testing (<a href="https://github.com/jekyll/jekyll/issues/5272">#5272</a>)</li>
881
- <li>Proposal: Affinity teams and their captains (<a href="https://github.com/jekyll/jekyll/issues/5273">#5273</a>)</li>
882
- <li>Replace duplicate with postive local test in issue template (<a href="https://github.com/jekyll/jekyll/issues/5286">#5286</a>)</li>
883
- <li>Update AppVeyor config. (<a href="https://github.com/jekyll/jekyll/issues/5240">#5240</a>)</li>
884
- <li>Execute jekyll from clone instead of defined binary when running ‘script/default-site’ (<a href="https://github.com/jekyll/jekyll/issues/5295">#5295</a>)</li>
885
- <li>rubocop: lib/jekyll/document.rb complexity fixes (<a href="https://github.com/jekyll/jekyll/issues/5045">#5045</a>)</li>
886
- <li>Proxy a number of Convertible methods to Renderer (<a href="https://github.com/jekyll/jekyll/issues/5308">#5308</a>)</li>
887
- <li>Run executable for Cucumber via Ruby instead of Shell (<a href="https://github.com/jekyll/jekyll/issues/5383">#5383</a>)</li>
888
- <li>Appease Rubocop (<a href="https://github.com/jekyll/jekyll/issues/5381">#5381</a>)</li>
889
- <li>remove features’ directories on windows with proper access (<a href="https://github.com/jekyll/jekyll/issues/5389">#5389</a>)</li>
890
- <li>
891
- <code class="highlighter-rouge">site_configuration.feature</code>: use UTC format in timezone (<a href="https://github.com/jekyll/jekyll/issues/5416">#5416</a>)</li>
892
- <li>swallow bundle output from <code class="highlighter-rouge">jekyll new</code> while in CI (<a href="https://github.com/jekyll/jekyll/issues/5408">#5408</a>)</li>
893
- <li>Add .editorconfig (<a href="https://github.com/jekyll/jekyll/issues/5412">#5412</a>)</li>
894
- </ul>
895
-
896
- <h2 id="v3-2-1">3.2.1 / 2016-08-02</h2>
897
-
898
- <h3 id="bug-fixes-v3-2-1">Bug Fixes</h3>
899
-
900
- <ul>
901
- <li>Include theme directories in default gemspec (<a href="https://github.com/jekyll/jekyll/issues/5152">#5152</a>)</li>
902
- <li>Fix for symlinked themes (<a href="https://github.com/jekyll/jekyll/issues/5156">#5156</a>)</li>
903
- <li>Layout: set <code class="highlighter-rouge">relative_path</code> without using Pathname (<a href="https://github.com/jekyll/jekyll/issues/5164">#5164</a>)</li>
904
- </ul>
905
-
906
- <h3 id="development-fixes-v3-2-1">Development Fixes</h3>
907
-
908
- <ul>
909
- <li>Add test to build the default site (<a href="https://github.com/jekyll/jekyll/issues/5154">#5154</a>)</li>
910
- <li>script/default-site: specify <code class="highlighter-rouge">BUNDLE_GEMFILE</code> for new site (<a href="https://github.com/jekyll/jekyll/issues/5178">#5178</a>)</li>
911
- <li>script/default-site: read Jekyll source from local clone (<a href="https://github.com/jekyll/jekyll/issues/5188">#5188</a>)</li>
912
- </ul>
913
-
914
- <h3 id="site-enhancements-v3-2-1">Site Enhancements</h3>
915
-
916
- <ul>
917
- <li>Enable site excerpts (<a href="https://github.com/jekyll/jekyll/issues/5150">#5150</a>)</li>
918
- <li>Initial 404 page (<a href="https://github.com/jekyll/jekyll/issues/5143">#5143</a>)</li>
919
- <li>Remove the “this feature is unreleased” warning from the theme docs (<a href="https://github.com/jekyll/jekyll/issues/5158">#5158</a>)</li>
920
- <li>Future True on GitHub Pages note (<a href="https://github.com/jekyll/jekyll/issues/5173">#5173</a>)</li>
921
- <li>Minor updates and corrections (<a href="https://github.com/jekyll/jekyll/issues/5177">#5177</a>)</li>
922
- <li>index.html: update instructions to require bundler (<a href="https://github.com/jekyll/jekyll/issues/5169">#5169</a>)</li>
923
- <li>docs/quickstart: update instructions to require bundler (<a href="https://github.com/jekyll/jekyll/issues/5168">#5168</a>)</li>
924
- </ul>
925
-
926
- <h2 id="v3-2-0">3.2.0 / 2016-07-26</h2>
927
-
928
- <h3 id="minor-enhancements-v3-2-0">Minor Enhancements</h3>
929
-
930
- <ul>
931
- <li>Stop testing with Ruby 2.0.x, which is EOL’d. (<a href="https://github.com/jekyll/jekyll/issues/4381">#4381</a>)</li>
932
- <li>Allow collections to have documents that have no file extension (<a href="https://github.com/jekyll/jekyll/issues/4545">#4545</a>)</li>
933
- <li>Add size property to <code class="highlighter-rouge">group_by</code> result (<a href="https://github.com/jekyll/jekyll/issues/4557">#4557</a>)</li>
934
- <li>Site Template: Removed unnecessary nesting from <code class="highlighter-rouge">_base.scss</code> (<a href="https://github.com/jekyll/jekyll/issues/4637">#4637</a>)</li>
935
- <li>Adding a debug log statment for skipped future documents. (<a href="https://github.com/jekyll/jekyll/issues/4558">#4558</a>)</li>
936
- <li>Site Template: Changed main <code class="highlighter-rouge">&lt;div&gt;</code> to <code class="highlighter-rouge">&lt;main&gt;</code> and added accessibility info (<a href="https://github.com/jekyll/jekyll/issues/4636">#4636</a>)</li>
937
- <li>Add array support to <code class="highlighter-rouge">where</code> filter (<a href="https://github.com/jekyll/jekyll/issues/4555">#4555</a>)</li>
938
- <li>‘jekyll clean’: also remove .sass-cache (<a href="https://github.com/jekyll/jekyll/issues/4652">#4652</a>)</li>
939
- <li>Clean up <code class="highlighter-rouge">Tags::PostUrl</code> a bit, including better errors and date parsing (<a href="https://github.com/jekyll/jekyll/issues/4670">#4670</a>)</li>
940
- <li>Use <code class="highlighter-rouge">String#encode</code> for <code class="highlighter-rouge">xml_escape</code> filter instead of <code class="highlighter-rouge">CGI.escapeHTML</code> (<a href="https://github.com/jekyll/jekyll/issues/4694">#4694</a>)</li>
941
- <li>Add <code class="highlighter-rouge">show_dir_listing</code> option for serve command and fix index file names (<a href="https://github.com/jekyll/jekyll/issues/4533">#4533</a>)</li>
942
- <li>Site Template: write a Gemfile which is educational to the new site (<a href="https://github.com/jekyll/jekyll/issues/4542">#4542</a>)</li>
943
- <li>Site template: add explanation of site variables in the example <code class="highlighter-rouge">_config.yml</code> (<a href="https://github.com/jekyll/jekyll/issues/4704">#4704</a>)</li>
944
- <li>Adds <code class="highlighter-rouge">link</code> Liquid tag to make generation of URLs easier (<a href="https://github.com/jekyll/jekyll/issues/4624">#4624</a>)</li>
945
- <li>Allow static files to be symlinked in unsafe mode or non-prod environments (<a href="https://github.com/jekyll/jekyll/issues/4640">#4640</a>)</li>
946
- <li>Add <code class="highlighter-rouge">:after_init</code> hook &amp; add <code class="highlighter-rouge">Site#config=</code> to make resetting config easy (<a href="https://github.com/jekyll/jekyll/issues/4703">#4703</a>)</li>
947
- <li>DocumentDrop: add <code class="highlighter-rouge">#&lt;=&gt;</code> which sorts by date (falling back to path) (<a href="https://github.com/jekyll/jekyll/issues/4741">#4741</a>)</li>
948
- <li>Add a <code class="highlighter-rouge">where_exp</code> filter for filtering by expression (<a href="https://github.com/jekyll/jekyll/issues/4478">#4478</a>)</li>
949
- <li>Globalize Jekyll’s Filters. (<a href="https://github.com/jekyll/jekyll/issues/4792">#4792</a>)</li>
950
- <li>Gem-based themes (<a href="https://github.com/jekyll/jekyll/issues/4595">#4595</a>)</li>
951
- <li>Allow symlinks if they point to stuff inside <code class="highlighter-rouge">site.source</code> (<a href="https://github.com/jekyll/jekyll/issues/4710">#4710</a>)</li>
952
- <li>Update colorator dependency to v1.x (<a href="https://github.com/jekyll/jekyll/issues/4855">#4855</a>)</li>
953
- <li>Move EntryFilter to use Pathutil &amp; fix <code class="highlighter-rouge">glob_include?</code> (<a href="https://github.com/jekyll/jekyll/issues/4859">#4859</a>)</li>
954
- <li>Add ‘jekyll new-theme’ command to help users get up and running creating a theme (<a href="https://github.com/jekyll/jekyll/issues/4848">#4848</a>)</li>
955
- <li>
956
- <code class="highlighter-rouge">markdownify</code> and <code class="highlighter-rouge">smartify</code> should convert input to string before conversion (<a href="https://github.com/jekyll/jekyll/issues/4958">#4958</a>)</li>
957
- <li>Run <code class="highlighter-rouge">Site#generate</code> for ‘jekyll doctor’ to catch plugin issues (<a href="https://github.com/jekyll/jekyll/issues/5005">#5005</a>)</li>
958
- <li>Add <code class="highlighter-rouge">normalize_whitepace</code> filter (<a href="https://github.com/jekyll/jekyll/issues/4917">#4917</a>)</li>
959
- <li>Move bin/jekyll to exe/jekyll to prevent collision with binstubs (<a href="https://github.com/jekyll/jekyll/issues/5014">#5014</a>)</li>
960
- <li>Cleaning up site template &amp; theme updates. (<a href="https://github.com/jekyll/jekyll/issues/4922">#4922</a>)</li>
961
- <li>Add fetch method to Drops (<a href="https://github.com/jekyll/jekyll/issues/5056">#5056</a>)</li>
962
- <li>Extract tag name to class method (<a href="https://github.com/jekyll/jekyll/issues/5063">#5063</a>)</li>
963
- <li>check if relative URL contains a colon (<a href="https://github.com/jekyll/jekyll/issues/5069">#5069</a>)</li>
964
- <li>Enable strict (or lax) liquid parsing via a config variable. (<a href="https://github.com/jekyll/jekyll/issues/5053">#5053</a>)</li>
965
- <li>Add filter: <code class="highlighter-rouge">to_integer</code> (<a href="https://github.com/jekyll/jekyll/issues/5101">#5101</a>)</li>
966
- <li>watcher: pass site instance to watch plugin (<a href="https://github.com/jekyll/jekyll/issues/5109">#5109</a>)</li>
967
- <li>Show liquid warnings. (<a href="https://github.com/jekyll/jekyll/issues/5129">#5129</a>)</li>
968
- <li>Add <code class="highlighter-rouge">--baseurl</code> to <code class="highlighter-rouge">build</code> subcommand (<a href="https://github.com/jekyll/jekyll/issues/5135">#5135</a>)</li>
969
- </ul>
970
-
971
- <h3 id="bug-fixes-v3-2-0">Bug Fixes</h3>
972
-
973
- <ul>
974
- <li>Site Template: Added a default lang attribute (<a href="https://github.com/jekyll/jekyll/issues/4633">#4633</a>)</li>
975
- <li>Site template: Escape title and description where it is used in HTML (<a href="https://github.com/jekyll/jekyll/issues/4606">#4606</a>)</li>
976
- <li>
977
- <code class="highlighter-rouge">Document#date</code>: drafts which have no date should use source file mtime (<a href="https://github.com/jekyll/jekyll/issues/4611">#4611</a>)</li>
978
- <li>
979
- <code class="highlighter-rouge">Filters#time</code>: clone an input Time so as to be non-destructive (<a href="https://github.com/jekyll/jekyll/issues/4590">#4590</a>)</li>
980
- <li>Doctor: fix issue where <code class="highlighter-rouge">--config</code> wasn’t a recognized flag (<a href="https://github.com/jekyll/jekyll/issues/4598">#4598</a>)</li>
981
- <li>Ensures <code class="highlighter-rouge">related_posts</code> are only set for a post (<a href="https://github.com/jekyll/jekyll/issues/4620">#4620</a>)</li>
982
- <li>
983
- <code class="highlighter-rouge">EntryFilter#special?</code>: ignore filenames which begin with <code class="highlighter-rouge">~</code> (<a href="https://github.com/jekyll/jekyll/issues/4491">#4491</a>)</li>
984
- <li>Cleaner: <code class="highlighter-rouge">keep_files</code> should only apply to the beginning of paths, not substrings with index &gt; 0 (<a href="https://github.com/jekyll/jekyll/issues/3849">#3849</a>)</li>
985
- <li>Use SSLEnable instead of EnableSSL and make URL HTTPS. (<a href="https://github.com/jekyll/jekyll/issues/4693">#4693</a>)</li>
986
- <li>convertible: use <code class="highlighter-rouge">Document::YAML_FRONT_MATTER_REGEXP</code> to parse transformable files (<a href="https://github.com/jekyll/jekyll/issues/4786">#4786</a>)</li>
987
- <li>Example in the site template should be IANA-approved example.com (<a href="https://github.com/jekyll/jekyll/issues/4793">#4793</a>)</li>
988
- <li>3.2.x/master: Fix defaults for Documents (posts/collection docs) (<a href="https://github.com/jekyll/jekyll/issues/4808">#4808</a>)</li>
989
- <li>Don’t rescue LoadError or bundler load errors for Bundler. (<a href="https://github.com/jekyll/jekyll/issues/4857">#4857</a>)</li>
990
- <li>
991
- <code class="highlighter-rouge">Serve.process</code> should receive same config as <code class="highlighter-rouge">Build.process</code> (<a href="https://github.com/jekyll/jekyll/issues/4953">#4953</a>)</li>
992
- <li>Prevent reset of page in Liquid payload right before rendering layouts (<a href="https://github.com/jekyll/jekyll/issues/5009">#5009</a>)</li>
993
- <li>Add missing fields to ExcerptDrop (<a href="https://github.com/jekyll/jekyll/issues/5067">#5067</a>)</li>
994
- <li>Stringify configuration overrides before first use (<a href="https://github.com/jekyll/jekyll/issues/5060">#5060</a>)</li>
995
- <li>hooks: move <code class="highlighter-rouge">after_init</code> hook call at the end of <code class="highlighter-rouge">Site#initialize</code> (<a href="https://github.com/jekyll/jekyll/issues/5106">#5106</a>)</li>
996
- <li>filters: raise error if no input given to date filters (<a href="https://github.com/jekyll/jekyll/issues/5127">#5127</a>)</li>
997
- <li>
998
- <code class="highlighter-rouge">where_exp</code> filter should filter posts (<a href="https://github.com/jekyll/jekyll/issues/4860">#4860</a>)</li>
999
- </ul>
1000
-
1001
- <h3 id="forward-ports-v3-2-0">Forward Ports</h3>
1002
-
1003
- <ul>
1004
- <li>From v3.1.4: Add ExcerptDrop and remove excerpt’s ability to refer to itself in Liquid (<a href="https://github.com/jekyll/jekyll/issues/4941">#4941</a>)</li>
1005
- <li>From v3.1.4: Configuration permalink fix and addition of Configuration.from and sorting <code class="highlighter-rouge">site.collections</code> by label (<a href="https://github.com/jekyll/jekyll/issues/4942">#4942</a>)</li>
1006
- <li>From v3.1.4: Fix <code class="highlighter-rouge">{{ layout }}</code> oddities (proper inheritance &amp; fixing overflow of old data) (<a href="https://github.com/jekyll/jekyll/issues/4943">#4943</a>)</li>
1007
- <li>From v3.1.5: Sort the results of the <code class="highlighter-rouge">require_all</code> glob (<a href="https://github.com/jekyll/jekyll/issues/4944">#4944</a>)</li>
1008
- <li>From v3.1.6: Add ability to render drops as JSON (<a href="https://github.com/jekyll/jekyll/issues/4945">#4945</a>)</li>
1009
- </ul>
1010
-
1011
- <h3 id="development-fixes-v3-2-0">Development Fixes</h3>
1012
-
1013
- <ul>
1014
- <li>Add project maintainer profile links (<a href="https://github.com/jekyll/jekyll/issues/4591">#4591</a>)</li>
1015
- <li>Fix state leakage in Kramdown test (<a href="https://github.com/jekyll/jekyll/issues/4618">#4618</a>)</li>
1016
- <li>Unify method for copying special files from repo to site (<a href="https://github.com/jekyll/jekyll/issues/4601">#4601</a>)</li>
1017
- <li>Refresh the contributing file (<a href="https://github.com/jekyll/jekyll/issues/4596">#4596</a>)</li>
1018
- <li>change smartify doc from copy/paste of mardownify doc (<a href="https://github.com/jekyll/jekyll/issues/4653">#4653</a>)</li>
1019
- <li>Update Rake &amp; disable warnings when running tests (<a href="https://github.com/jekyll/jekyll/issues/4720">#4720</a>)</li>
1020
- <li>Fix many warnings (<a href="https://github.com/jekyll/jekyll/issues/4537">#4537</a>)</li>
1021
- <li>Don’t blindly assume the last system when determining “open” cmd (<a href="https://github.com/jekyll/jekyll/issues/4717">#4717</a>)</li>
1022
- <li>Fix “locally” typo in contributing documentation (<a href="https://github.com/jekyll/jekyll/issues/4756">#4756</a>)</li>
1023
- <li>Update Rubocop rules (<a href="https://github.com/jekyll/jekyll/issues/4886">#4886</a>)</li>
1024
- <li>Flesh out the issue template to be much more detailed (<a href="https://github.com/jekyll/jekyll/issues/4849">#4849</a>)</li>
1025
- <li>Fixing rubocop offenses in lib/jekyll/cleaner.rb (<a href="https://github.com/jekyll/jekyll/issues/4892">#4892</a>)</li>
1026
- <li>Update <code class="highlighter-rouge">jekyll/commands*</code> to pass rubocop rules (<a href="https://github.com/jekyll/jekyll/issues/4888">#4888</a>)</li>
1027
- <li>Clean up many test files to pass Rubocop rules (<a href="https://github.com/jekyll/jekyll/issues/4902">#4902</a>)</li>
1028
- <li>Rubocop cleanup for some utils and further test files (<a href="https://github.com/jekyll/jekyll/issues/4916">#4916</a>)</li>
1029
- <li>Rubocop: Low hanging fruit (<a href="https://github.com/jekyll/jekyll/issues/4936">#4936</a>)</li>
1030
- <li>Rubocop: <code class="highlighter-rouge">Drop</code> changes from v3.1 forward-ports (<a href="https://github.com/jekyll/jekyll/issues/4949">#4949</a>)</li>
1031
- <li>Rubocop: cleanup for misc files (<a href="https://github.com/jekyll/jekyll/issues/4946">#4946</a>)</li>
1032
- <li>Rubocop: Stevenson (<a href="https://github.com/jekyll/jekyll/issues/4951">#4951</a>)</li>
1033
- <li>Rubocop: lib/jekyll/entry_filter.rb (<a href="https://github.com/jekyll/jekyll/issues/4950">#4950</a>)</li>
1034
- <li>Rubocop: <code class="highlighter-rouge">test/*</code> (<a href="https://github.com/jekyll/jekyll/issues/4947">#4947</a>)</li>
1035
- <li>Rubocop: features (<a href="https://github.com/jekyll/jekyll/issues/4934">#4934</a>)</li>
1036
- <li>Rubocop: Liquid renderer (<a href="https://github.com/jekyll/jekyll/issues/4933">#4933</a>)</li>
1037
- <li>Rubocop: converters (<a href="https://github.com/jekyll/jekyll/issues/4931">#4931</a>)</li>
1038
- <li>Rubocop: Site Drop (<a href="https://github.com/jekyll/jekyll/issues/4948">#4948</a>)</li>
1039
- <li>Rubocop: tags (<a href="https://github.com/jekyll/jekyll/issues/4938">#4938</a>)</li>
1040
- <li>Rubocop: Readers (<a href="https://github.com/jekyll/jekyll/issues/4932">#4932</a>)</li>
1041
- <li>rubocop: jekyll/lib/frontmatter_defaults.rb (<a href="https://github.com/jekyll/jekyll/issues/4974">#4974</a>)</li>
1042
- <li>rubocop: features/step_definitions.rb (<a href="https://github.com/jekyll/jekyll/issues/4956">#4956</a>)</li>
1043
- <li>Rubocop theme and url jekyll libs (<a href="https://github.com/jekyll/jekyll/issues/4959">#4959</a>)</li>
1044
- <li>Rubocop jekyll.rb (<a href="https://github.com/jekyll/jekyll/issues/4966">#4966</a>)</li>
1045
- <li>Rubocop: use %r for all regular expressions. (<a href="https://github.com/jekyll/jekyll/issues/4979">#4979</a>)</li>
1046
- <li>Cleanup and make misc files compliant with Rubocop. (<a href="https://github.com/jekyll/jekyll/issues/4940">#4940</a>)</li>
1047
- <li>Rubocop: jekyll/lib/site.rb (<a href="https://github.com/jekyll/jekyll/issues/4973">#4973</a>)</li>
1048
- <li>Add timings for each scenario in cucumber &amp; print worst offenders (<a href="https://github.com/jekyll/jekyll/issues/4908">#4908</a>)</li>
1049
- <li>rubocop: jekyll/lib/filters.rb (<a href="https://github.com/jekyll/jekyll/issues/4993">#4993</a>)</li>
1050
- <li>Fix rubocop offenses in exe/jekyll (<a href="https://github.com/jekyll/jekyll/issues/5017">#5017</a>)</li>
1051
- <li>Rubocop: lib/jekyll/command.rb (<a href="https://github.com/jekyll/jekyll/issues/5018">#5018</a>)</li>
1052
- <li>rubocop: lib/jekyll/static_file.rb (<a href="https://github.com/jekyll/jekyll/issues/5019">#5019</a>)</li>
1053
- <li>rubocop: lib/jekyll/utils.rb (<a href="https://github.com/jekyll/jekyll/issues/5026">#5026</a>)</li>
1054
- <li>rubocop: lib/jekyll/regenerator.rb (<a href="https://github.com/jekyll/jekyll/issues/5025">#5025</a>)</li>
1055
- <li>rubocop: lib/jekyll/configuration.rb (<a href="https://github.com/jekyll/jekyll/issues/5024">#5024</a>)</li>
1056
- <li>rubocop: lib/jekyll/renderer.rb style fixes (<a href="https://github.com/jekyll/jekyll/issues/5032">#5032</a>)</li>
1057
- <li>rubocop: lib/jekyll/convertible.rb style fixes (<a href="https://github.com/jekyll/jekyll/issues/5031">#5031</a>)</li>
1058
- <li>rubocop: lib/jekyll/document.rb style fixes (<a href="https://github.com/jekyll/jekyll/issues/5030">#5030</a>)</li>
1059
- <li>Remove ruby-head from Travis matrix &amp; fix jruby failures (<a href="https://github.com/jekyll/jekyll/issues/5015">#5015</a>)</li>
1060
- <li>Remove useless statement from Configuration test (<a href="https://github.com/jekyll/jekyll/issues/5065">#5065</a>)</li>
1061
- <li>Change baseurl to example.com for some test cases (<a href="https://github.com/jekyll/jekyll/issues/5068">#5068</a>)</li>
1062
- <li>use activesupport &lt; 5 if we are on a Ruby &lt; 2.2.2 (<a href="https://github.com/jekyll/jekyll/issues/5100">#5100</a>)</li>
1063
- <li>Internal documentation for working on Jekyll (<a href="https://github.com/jekyll/jekyll/issues/5011">#5011</a>)</li>
1064
- <li>rubocop: lib/jekyll/collection.rb (<a href="https://github.com/jekyll/jekyll/issues/5022">#5022</a>)</li>
1065
- <li>tests: Typo fixes. (<a href="https://github.com/jekyll/jekyll/issues/5114">#5114</a>)</li>
1066
- <li>Normalize yml files. (<a href="https://github.com/jekyll/jekyll/issues/5116">#5116</a>)</li>
1067
- <li>Whitespace cleanup. (<a href="https://github.com/jekyll/jekyll/issues/5113">#5113</a>)</li>
1068
- <li>Add AppVeyor support. (<a href="https://github.com/jekyll/jekyll/issues/5115">#5115</a>)</li>
1069
- <li>appveyor.yml: drop Ruby 2.0.0. (<a href="https://github.com/jekyll/jekyll/issues/5119">#5119</a>)</li>
1070
- <li>Fix indentation in benchmark (<a href="https://github.com/jekyll/jekyll/issues/5124">#5124</a>)</li>
1071
- <li>Style fixes for Rubocop 0.42.0 - var == 0 becomes var.zero? - when defining method_missing, also define respond_to_missing? (<a href="https://github.com/jekyll/jekyll/issues/5137">#5137</a>)</li>
1072
- </ul>
1073
-
1074
- <h3 id="site-enhancements-v3-2-0">Site Enhancements</h3>
1075
-
1076
- <ul>
1077
- <li>Add jekyll-seo-tag, jekyll-avatar, and jekyll-sitemap to the site (<a href="https://github.com/jekyll/jekyll/issues/4553">#4553</a>)</li>
1078
- <li>Add Google search query to /docs/help/ (<a href="https://github.com/jekyll/jekyll/issues/4589">#4589</a>)</li>
1079
- <li>Upgrading, documentation (<a href="https://github.com/jekyll/jekyll/issues/4597">#4597</a>)</li>
1080
- <li>Add ‘view source’ entry (<a href="https://github.com/jekyll/jekyll/issues/4602">#4602</a>)</li>
1081
- <li>Add jekyll-video-embed to list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/4621">#4621</a>)</li>
1082
- <li>Adding Aerobatic to list of deployment options (<a href="https://github.com/jekyll/jekyll/issues/4630">#4630</a>)</li>
1083
- <li>Update documentation: HTMLProofer CLI command (<a href="https://github.com/jekyll/jekyll/issues/4641">#4641</a>)</li>
1084
- <li>Document that subdirectories of <code class="highlighter-rouge">_posts</code> are no longer categories (<a href="https://github.com/jekyll/jekyll/issues/4639">#4639</a>)</li>
1085
- <li>Update continuous-integration docs with sudo: false information (<a href="https://github.com/jekyll/jekyll/issues/4628">#4628</a>)</li>
1086
- <li>Blog post on refreshed contributing file and new affinity teams (<a href="https://github.com/jekyll/jekyll/issues/4645">#4645</a>)</li>
1087
- <li>Fixes typo on collections (<a href="https://github.com/jekyll/jekyll/issues/4647">#4647</a>)</li>
1088
- <li>Documentation: future option also works for collections (<a href="https://github.com/jekyll/jekyll/issues/4682">#4682</a>)</li>
1089
- <li>Additional package needed for Fedora 23 Workspace (<a href="https://github.com/jekyll/jekyll/issues/4685">#4685</a>)</li>
1090
- <li>Fix typo on Chocolatey name in Windows documentation (<a href="https://github.com/jekyll/jekyll/issues/4686">#4686</a>)</li>
1091
- <li>Use the correct URL, Fixes <a href="https://github.com/jekyll/jekyll/issues/4698">#4698</a> (<a href="https://github.com/jekyll/jekyll/issues/4699">#4699</a>)</li>
1092
- <li>Add jekyll-paspagon plugin (<a href="https://github.com/jekyll/jekyll/issues/4700">#4700</a>)</li>
1093
- <li>Bold-italicize note in assets documentation about needing yaml front matter (<a href="https://github.com/jekyll/jekyll/issues/4706">#4706</a>)</li>
1094
- <li>Highlight the <code class="highlighter-rouge">script/</code> calls in the Contributing documentation (<a href="https://github.com/jekyll/jekyll/issues/4712">#4712</a>)</li>
1095
- <li>Add Hawkins to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4755">#4755</a>)</li>
1096
- <li>Fix a typo in pagination doc (<a href="https://github.com/jekyll/jekyll/issues/4763">#4763</a>)</li>
1097
- <li>Switch second GitHub Pages link to HTTPS (<a href="https://github.com/jekyll/jekyll/issues/4760">#4760</a>)</li>
1098
- <li>Explain data file format requirements more clearly in documentation (<a href="https://github.com/jekyll/jekyll/issues/4781">#4781</a>)</li>
1099
- <li>Add jekyll-i18n_tags to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4775">#4775</a>)</li>
1100
- <li>Remove Leonard Lamprecht’s website from Sites page (<a href="https://github.com/jekyll/jekyll/issues/4771">#4771</a>)</li>
1101
- <li>Updates documentation for collections to include <code class="highlighter-rouge">date</code> property (<a href="https://github.com/jekyll/jekyll/issues/4769">#4769</a>)</li>
1102
- <li>Added an explicit rerun note to configuration.md, defaults section (<a href="https://github.com/jekyll/jekyll/issues/4734">#4734</a>)</li>
1103
- <li>Update Rack-Jekyll Heroku deployment blog post url (<a href="https://github.com/jekyll/jekyll/issues/4789">#4789</a>)</li>
1104
- <li>Added missing single quote on rsync client side command (<a href="https://github.com/jekyll/jekyll/issues/4813">#4813</a>)</li>
1105
- <li>Organize Form Platforms-as-a-Service into unified list &amp; add FormSpree.io (<a href="https://github.com/jekyll/jekyll/issues/4754">#4754</a>)</li>
1106
- <li>Fixed typo on Configuration page (<a href="https://github.com/jekyll/jekyll/issues/4804">#4804</a>)</li>
1107
- <li>Update FormKeep URL on the Resources doc (<a href="https://github.com/jekyll/jekyll/issues/4844">#4844</a>)</li>
1108
- <li>site: use liquid &amp; reduce some whitespace noise (<a href="https://github.com/jekyll/jekyll/issues/4854">#4854</a>)</li>
1109
- <li>Add jekyll-breadcrumbs to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4874">#4874</a>)</li>
1110
- <li>Added Pug converter to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4872">#4872</a>)</li>
1111
- <li>Add jekyll-ideal-image-slider to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4863">#4863</a>)</li>
1112
- <li>Add Jekyll Tips and the Cheatsheet to the list of resources (<a href="https://github.com/jekyll/jekyll/issues/4887">#4887</a>)</li>
1113
- <li>Removed extra <code class="highlighter-rouge">&lt;/p&gt;</code> from <code class="highlighter-rouge">site/_docs/permalinks.md</code> (<a href="https://github.com/jekyll/jekyll/issues/4890">#4890</a>)</li>
1114
- <li>Add pubstorm deployment instructions to docs (<a href="https://github.com/jekyll/jekyll/issues/4881">#4881</a>)</li>
1115
- <li>Corrected pagination docs for hidden: true feature (<a href="https://github.com/jekyll/jekyll/issues/4903">#4903</a>)</li>
1116
- <li>Remove a Broken Link for Refheap Plugin (<a href="https://github.com/jekyll/jekyll/issues/4971">#4971</a>)</li>
1117
- <li>Instructions on how to install github-gem on Windows (<a href="https://github.com/jekyll/jekyll/issues/4975">#4975</a>)</li>
1118
- <li>Minor tweak to fix missing apostrophne (<a href="https://github.com/jekyll/jekyll/issues/4962">#4962</a>)</li>
1119
- <li>Instructions on how to install github-gem on Windows (v2) (<a href="https://github.com/jekyll/jekyll/issues/4977">#4977</a>)</li>
1120
- <li>Fix inaccurate HTTP response header field name (<a href="https://github.com/jekyll/jekyll/issues/4976">#4976</a>)</li>
1121
- <li>Add post about GSoC project (<a href="https://github.com/jekyll/jekyll/issues/4980">#4980</a>)</li>
1122
- <li>Link to the HTML page instead of Markdown (<a href="https://github.com/jekyll/jekyll/issues/4985">#4985</a>)</li>
1123
- <li>Update normalize.css to v4.0.0. (<a href="https://github.com/jekyll/jekyll/issues/4989">#4989</a>)</li>
1124
- <li>Add jekyll-tags-list-plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/5000">#5000</a>)</li>
1125
- <li>Windows docs: Command needs to be called from blog path (<a href="https://github.com/jekyll/jekyll/issues/5006">#5006</a>)</li>
1126
- <li>Update text to be consitent with example (<a href="https://github.com/jekyll/jekyll/issues/5010">#5010</a>)</li>
1127
- <li>Update template links to point to core Liquid site (<a href="https://github.com/jekyll/jekyll/issues/5012">#5012</a>)</li>
1128
- <li>Add generator-jekyllized to third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/5027">#5027</a>)</li>
1129
- <li>Add Jekyll Art Hallery generator plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/5043">#5043</a>)</li>
1130
- <li>Add Formingo to the list of Jekyll form SaaS (<a href="https://github.com/jekyll/jekyll/issues/5054">#5054</a>)</li>
1131
- <li>Highlight help nav item when navigated to. (<a href="https://github.com/jekyll/jekyll/issues/5058">#5058</a>)</li>
1132
- <li>Update normalize.css to v4.2.0. (<a href="https://github.com/jekyll/jekyll/issues/5096">#5096</a>)</li>
1133
- <li>Updates html-proofer code (<a href="https://github.com/jekyll/jekyll/issues/5098">#5098</a>)</li>
1134
- <li>Jekyll Community (<a href="https://github.com/jekyll/jekyll/issues/5097">#5097</a>)</li>
1135
- <li>Typo in documentation file templates.md (<a href="https://github.com/jekyll/jekyll/issues/5117">#5117</a>)</li>
1136
- <li>Slightly, improve PNG compression. (<a href="https://github.com/jekyll/jekyll/issues/5112">#5112</a>)</li>
1137
- <li>docs: add jekyll-maps plugin reference (<a href="https://github.com/jekyll/jekyll/issues/5123">#5123</a>)</li>
1138
- <li>docs: fix link to plugins page source (<a href="https://github.com/jekyll/jekyll/issues/5122">#5122</a>)</li>
1139
- <li>Update the configuration docs to match the code (<a href="https://github.com/jekyll/jekyll/issues/5131">#5131</a>)</li>
1140
- <li>Removed confusing word repetition. (<a href="https://github.com/jekyll/jekyll/issues/5139">#5139</a>)</li>
1141
- <li>Add a note about script/fmt (<a href="https://github.com/jekyll/jekyll/issues/5138">#5138</a>)</li>
1142
- </ul>
1143
-
1144
- <h2 id="v3-1-6">3.1.6 / 2016-05-19</h2>
1145
-
1146
- <h3 id="bug-fixes-v3-1-6">Bug Fixes</h3>
1147
-
1148
- <ul>
1149
- <li>Add ability to <code class="highlighter-rouge">jsonify</code> Drops such that, e.g. <code class="highlighter-rouge">site | jsonify</code>, works. (<a href="https://github.com/jekyll/jekyll/issues/4914">#4914</a>)</li>
1150
- </ul>
1151
-
1152
- <h2 id="v3-1-5">3.1.5 / 2016-05-18</h2>
1153
-
1154
- <h3 id="bug-fixes-v3-1-5">Bug Fixes</h3>
1155
-
1156
- <ul>
1157
- <li>Sort the results of the <code class="highlighter-rouge">require_all</code> glob (affects Linux only). (<a href="https://github.com/jekyll/jekyll/issues/4912">#4912</a>)</li>
1158
- </ul>
1159
-
1160
- <h2 id="v3-1-4">3.1.4 / 2016-05-18</h2>
1161
-
1162
- <h3 id="bug-fixes-v3-1-4">Bug Fixes</h3>
1163
-
1164
- <ul>
1165
- <li>Add <code class="highlighter-rouge">ExcerptDrop</code> and remove excerpt’s ability to refer to itself in Liquid (<a href="https://github.com/jekyll/jekyll/issues/4907">#4907</a>)</li>
1166
- <li>Configuration permalink fix where <code class="highlighter-rouge">collections.posts.permalink</code> inherits properly from <code class="highlighter-rouge">permalink</code> only when it doesn’t exist (<a href="https://github.com/jekyll/jekyll/issues/4910">#4910</a>)</li>
1167
- <li>Add <code class="highlighter-rouge">Configuration.from</code> to make it easier to build configs from just a hash</li>
1168
- <li>Sorting <code class="highlighter-rouge">site.collections</code> in Liquid by label (<a href="https://github.com/jekyll/jekyll/issues/4910">#4910</a>)</li>
1169
- <li>Fix bug where <code class="highlighter-rouge">layout</code> in Liquid would inherit from previously-rendered layouts’ metadatas (<a href="https://github.com/jekyll/jekyll/issues/4909">#4909</a>)</li>
1170
- <li>Fix bug where <code class="highlighter-rouge">layout</code> in Liquid would override in the wrong direction (more-specific layouts’ data were overwritten by their parent layouts’ data; this has now been reversed) (<a href="https://github.com/jekyll/jekyll/issues/4909">#4909</a>)</li>
1171
- </ul>
1172
-
1173
- <h2 id="v3-1-3">3.1.3 / 2016-04-18</h2>
1174
-
1175
- <ul>
1176
- <li>Fix defaults for Documents to lookup defaults based on <code class="highlighter-rouge">relative_path</code> instead of <code class="highlighter-rouge">url</code> (<a href="https://github.com/jekyll/jekyll/issues/4807">#4807</a>)</li>
1177
- <li>Use SSLEnable instead of EnableSSL and make URL HTTPS (WEBrick) (<a href="https://github.com/jekyll/jekyll/issues/4693">#4693</a>)</li>
1178
- </ul>
1179
-
1180
- <h2 id="v3-1-2">3.1.2 / 2016-02-19</h2>
1181
-
1182
- <h3 id="minor-enhancements-v3-1-2">Minor Enhancements</h3>
1183
-
1184
- <ul>
1185
- <li>Include <code class="highlighter-rouge">.rubocop.yml</code> in Gem (<a href="https://github.com/jekyll/jekyll/issues/4437">#4437</a>)</li>
1186
- <li>
1187
- <code class="highlighter-rouge">LiquidRenderer#parse</code>: parse with line numbers. (<a href="https://github.com/jekyll/jekyll/issues/4452">#4452</a>)</li>
1188
- <li>Add consistency to the no-subcommand deprecation message (<a href="https://github.com/jekyll/jekyll/issues/4505">#4505</a>)</li>
1189
- </ul>
1190
-
1191
- <h3 id="bug-fixes-v3-1-2">Bug Fixes</h3>
1192
-
1193
- <ul>
1194
- <li>Fix syntax highlighting in kramdown by making <code class="highlighter-rouge">[@config](https://github.com/config)</code> accessible in the Markdown converter. (<a href="https://github.com/jekyll/jekyll/issues/4428">#4428</a>)</li>
1195
- <li>
1196
- <code class="highlighter-rouge">Jekyll.sanitized_path</code>: sanitizing a questionable path should handle tildes (<a href="https://github.com/jekyll/jekyll/issues/4492">#4492</a>)</li>
1197
- <li>Fix <code class="highlighter-rouge">titleize</code> so already capitalized words are not dropped (<a href="https://github.com/jekyll/jekyll/issues/4525">#4525</a>)</li>
1198
- <li>Permalinks which end in a slash should always output HTML (<a href="https://github.com/jekyll/jekyll/issues/4546">#4546</a>)</li>
1199
- </ul>
1200
-
1201
- <h3 id="development-fixes-v3-1-2">Development Fixes</h3>
1202
-
1203
- <ul>
1204
- <li>Require at least cucumber version 2.1.0 (<a href="https://github.com/jekyll/jekyll/issues/4514">#4514</a>)</li>
1205
- </ul>
1206
-
1207
- <h3 id="site-enhancements-v3-1-2">Site Enhancements</h3>
1208
-
1209
- <ul>
1210
- <li>Add jekyll-toc plugin (<a href="https://github.com/jekyll/jekyll/issues/4429">#4429</a>)</li>
1211
- <li>Docs: Quickstart - added documentation about the <code class="highlighter-rouge">--force</code> option (<a href="https://github.com/jekyll/jekyll/issues/4410">#4410</a>)</li>
1212
- <li>Fix broken links to the Code of Conduct (<a href="https://github.com/jekyll/jekyll/issues/4436">#4436</a>)</li>
1213
- <li>Upgrade notes: mention trailing slash in permalink; fixes <a href="https://github.com/jekyll/jekyll/issues/4440">#4440</a> (<a href="https://github.com/jekyll/jekyll/issues/4455">#4455</a>)</li>
1214
- <li>Add hooks to the plugin categories toc (<a href="https://github.com/jekyll/jekyll/issues/4463">#4463</a>)</li>
1215
- <li>[add note] Jekyll 3 requires newer version of Ruby. (<a href="https://github.com/jekyll/jekyll/issues/4461">#4461</a>)</li>
1216
- <li>Fix typo in upgrading docs (<a href="https://github.com/jekyll/jekyll/issues/4473">#4473</a>)</li>
1217
- <li>Add note about upgrading documentation on jekyllrb.com/help/ (<a href="https://github.com/jekyll/jekyll/issues/4484">#4484</a>)</li>
1218
- <li>Update Rake link (<a href="https://github.com/jekyll/jekyll/issues/4496">#4496</a>)</li>
1219
- <li>Update &amp; prune the short list of example sites (<a href="https://github.com/jekyll/jekyll/issues/4374">#4374</a>)</li>
1220
- <li>Added amp-jekyll plugin to plugins docs (<a href="https://github.com/jekyll/jekyll/issues/4517">#4517</a>)</li>
1221
- <li>A few grammar fixes (<a href="https://github.com/jekyll/jekyll/issues/4512">#4512</a>)</li>
1222
- <li>Correct a couple mistakes in structure.md (<a href="https://github.com/jekyll/jekyll/issues/4522">#4522</a>)</li>
1223
- </ul>
1224
-
1225
- <h2 id="v3-1-1">3.1.1 / 2016-01-29</h2>
1226
-
1227
- <h3 id="meta">Meta</h3>
1228
-
1229
- <ul>
1230
- <li>Update the Code of Conduct to the latest version (<a href="https://github.com/jekyll/jekyll/issues/4402">#4402</a>)</li>
1231
- </ul>
1232
-
1233
- <h3 id="bug-fixes-v3-1-1">Bug Fixes</h3>
1234
-
1235
- <ul>
1236
- <li>
1237
- <code class="highlighter-rouge">Page#dir</code>: ensure it ends in a slash (<a href="https://github.com/jekyll/jekyll/issues/4403">#4403</a>)</li>
1238
- <li>Add <code class="highlighter-rouge">Utils.merged_file_read_opts</code> to unify reading &amp; strip the BOM (<a href="https://github.com/jekyll/jekyll/issues/4404">#4404</a>)</li>
1239
- <li>
1240
- <code class="highlighter-rouge">Renderer#output_ext</code>: honor folders when looking for ext (<a href="https://github.com/jekyll/jekyll/issues/4401">#4401</a>)</li>
1241
- </ul>
1242
-
1243
- <h3 id="development-fixes-v3-1-1">Development Fixes</h3>
1244
-
1245
- <ul>
1246
- <li>Suppress stdout in liquid profiling test (<a href="https://github.com/jekyll/jekyll/issues/4409">#4409</a>)</li>
1247
- </ul>
1248
-
1249
- <h2 id="v3-1-0">3.1.0 / 2016-01-23</h2>
1250
-
1251
- <h3 id="minor-enhancements-v3-1-0">Minor Enhancements</h3>
1252
-
1253
- <ul>
1254
- <li>Use <code class="highlighter-rouge">Liquid::Drop</code>s instead of <code class="highlighter-rouge">Hash</code>es in <code class="highlighter-rouge">#to_liquid</code> (<a href="https://github.com/jekyll/jekyll/issues/4277">#4277</a>)</li>
1255
- <li>Add ‘sample’ Liquid filter Equivalent to Array#sample functionality (<a href="https://github.com/jekyll/jekyll/issues/4223">#4223</a>)</li>
1256
- <li>Cache parsed include file to save liquid parsing time. (<a href="https://github.com/jekyll/jekyll/issues/4120">#4120</a>)</li>
1257
- <li>Slightly speed up url sanitization and handle multiples of ///. (<a href="https://github.com/jekyll/jekyll/issues/4168">#4168</a>)</li>
1258
- <li>Print debug message when a document is skipped from reading (<a href="https://github.com/jekyll/jekyll/issues/4180">#4180</a>)</li>
1259
- <li>Include tag should accept multiple variables in the include name (<a href="https://github.com/jekyll/jekyll/issues/4183">#4183</a>)</li>
1260
- <li>Add <code class="highlighter-rouge">-o</code> option to serve command which opens server URL (<a href="https://github.com/jekyll/jekyll/issues/4144">#4144</a>)</li>
1261
- <li>Add CodeClimate platform for better code quality. (<a href="https://github.com/jekyll/jekyll/issues/4220">#4220</a>)</li>
1262
- <li>General improvements for WEBrick via jekyll serve such as SSL &amp; custom headers (<a href="https://github.com/jekyll/jekyll/issues/4224">#4224</a>, <a href="https://github.com/jekyll/jekyll/issues/4228">#4228</a>)</li>
1263
- <li>Add a default charset to content-type on webrick. (<a href="https://github.com/jekyll/jekyll/issues/4231">#4231</a>)</li>
1264
- <li>Switch <code class="highlighter-rouge">PluginManager</code> to use <code class="highlighter-rouge">require_with_graceful_fail</code> for better UX (<a href="https://github.com/jekyll/jekyll/issues/4233">#4233</a>)</li>
1265
- <li>Allow quoted date in front matter defaults (<a href="https://github.com/jekyll/jekyll/issues/4184">#4184</a>)</li>
1266
- <li>Add a Jekyll doctor warning for URLs that only differ by case (<a href="https://github.com/jekyll/jekyll/issues/3171">#3171</a>)</li>
1267
- <li>drops: create one base Drop class which can be set as mutable or not (<a href="https://github.com/jekyll/jekyll/issues/4285">#4285</a>)</li>
1268
- <li>drops: provide <code class="highlighter-rouge">#to_h</code> to allow for hash introspection (<a href="https://github.com/jekyll/jekyll/issues/4281">#4281</a>)</li>
1269
- <li>Shim subcommands with indication of gem possibly required so users know how to use them (<a href="https://github.com/jekyll/jekyll/issues/4254">#4254</a>)</li>
1270
- <li>Add smartify Liquid filter for SmartyPants (<a href="https://github.com/jekyll/jekyll/issues/4323">#4323</a>)</li>
1271
- <li>Raise error on empty permalink (<a href="https://github.com/jekyll/jekyll/issues/4361">#4361</a>)</li>
1272
- <li>Refactor Page#permalink method (<a href="https://github.com/jekyll/jekyll/issues/4389">#4389</a>)</li>
1273
- </ul>
1274
-
1275
- <h3 id="bug-fixes-v3-1-0">Bug Fixes</h3>
1276
-
1277
- <ul>
1278
- <li>Pass build options into <code class="highlighter-rouge">clean</code> command (<a href="https://github.com/jekyll/jekyll/issues/4177">#4177</a>)</li>
1279
- <li>Allow users to use .htm and .xhtml (XHTML5.) (<a href="https://github.com/jekyll/jekyll/issues/4160">#4160</a>)</li>
1280
- <li>Prevent Shell Injection. (<a href="https://github.com/jekyll/jekyll/issues/4200">#4200</a>)</li>
1281
- <li>Convertible should make layout data accessible via <code class="highlighter-rouge">layout</code> instead of <code class="highlighter-rouge">page</code> (<a href="https://github.com/jekyll/jekyll/issues/4205">#4205</a>)</li>
1282
- <li>Avoid using <code class="highlighter-rouge">Dir.glob</code> with absolute path to allow special characters in the path (<a href="https://github.com/jekyll/jekyll/issues/4150">#4150</a>)</li>
1283
- <li>Handle empty config files (<a href="https://github.com/jekyll/jekyll/issues/4052">#4052</a>)</li>
1284
- <li>Rename <code class="highlighter-rouge">[@options](https://github.com/options)</code> so that it does not impact Liquid. (<a href="https://github.com/jekyll/jekyll/issues/4173">#4173</a>)</li>
1285
- <li>utils/drops: update Drop to support <code class="highlighter-rouge">Utils.deep_merge_hashes</code> (<a href="https://github.com/jekyll/jekyll/issues/4289">#4289</a>)</li>
1286
- <li>Make sure jekyll/drops/drop is loaded first. (<a href="https://github.com/jekyll/jekyll/issues/4292">#4292</a>)</li>
1287
- <li>Convertible/Page/Renderer: use payload hash accessor &amp; setter syntax for backwards-compatibility (<a href="https://github.com/jekyll/jekyll/issues/4311">#4311</a>)</li>
1288
- <li>Drop: fix hash setter precendence (<a href="https://github.com/jekyll/jekyll/issues/4312">#4312</a>)</li>
1289
- <li>utils: <code class="highlighter-rouge">has_yaml_header?</code> should accept files with extraneous spaces (<a href="https://github.com/jekyll/jekyll/issues/4290">#4290</a>)</li>
1290
- <li>Escape html from site.title and page.title in site template (<a href="https://github.com/jekyll/jekyll/issues/4307">#4307</a>)</li>
1291
- <li>Allow custom file extensions if defined in <code class="highlighter-rouge">permalink</code> YAML front matter (<a href="https://github.com/jekyll/jekyll/issues/4314">#4314</a>)</li>
1292
- <li>Fix deep_merge_hashes! handling of drops and hashes (<a href="https://github.com/jekyll/jekyll/issues/4359">#4359</a>)</li>
1293
- <li>Page should respect output extension of its permalink (<a href="https://github.com/jekyll/jekyll/issues/4373">#4373</a>)</li>
1294
- <li>Disable auto-regeneration when running server detached (<a href="https://github.com/jekyll/jekyll/issues/4376">#4376</a>)</li>
1295
- <li>Drop#[]: only use public_send for keys in the content_methods array (<a href="https://github.com/jekyll/jekyll/issues/4388">#4388</a>)</li>
1296
- <li>Extract title from filename successfully when no date. (<a href="https://github.com/jekyll/jekyll/issues/4195">#4195</a>)</li>
1297
- </ul>
1298
-
1299
- <h3 id="development-fixes-v3-1-0">Development Fixes</h3>
1300
-
1301
- <ul>
1302
- <li>
1303
- <code class="highlighter-rouge">jekyll-docs</code> should be easily release-able (<a href="https://github.com/jekyll/jekyll/issues/4152">#4152</a>)</li>
1304
- <li>Allow use of Cucumber 2.1 or greater (<a href="https://github.com/jekyll/jekyll/issues/4181">#4181</a>)</li>
1305
- <li>Modernize Kramdown for Markdown converter. (<a href="https://github.com/jekyll/jekyll/issues/4109">#4109</a>)</li>
1306
- <li>Change TestDoctorCommand to JekyllUnitTest… (<a href="https://github.com/jekyll/jekyll/issues/4263">#4263</a>)</li>
1307
- <li>Create namespaced rake tasks in separate <code class="highlighter-rouge">.rake</code> files under <code class="highlighter-rouge">lib/tasks</code> (<a href="https://github.com/jekyll/jekyll/issues/4282">#4282</a>)</li>
1308
- <li>markdown: refactor for greater readability &amp; efficiency (<a href="https://github.com/jekyll/jekyll/issues/3771">#3771</a>)</li>
1309
- <li>Fix many Rubocop style errors (<a href="https://github.com/jekyll/jekyll/issues/4301">#4301</a>)</li>
1310
- <li>Fix spelling of “GitHub” in docs and history (<a href="https://github.com/jekyll/jekyll/issues/4322">#4322</a>)</li>
1311
- <li>Reorganize and cleanup the Gemfile, shorten required depends. (<a href="https://github.com/jekyll/jekyll/issues/4318">#4318</a>)</li>
1312
- <li>Remove script/rebund. (<a href="https://github.com/jekyll/jekyll/issues/4341">#4341</a>)</li>
1313
- <li>Implement codeclimate platform (<a href="https://github.com/jekyll/jekyll/issues/4340">#4340</a>)</li>
1314
- <li>Remove ObectSpace dumping and start using inherited, it’s faster. (<a href="https://github.com/jekyll/jekyll/issues/4342">#4342</a>)</li>
1315
- <li>Add script/travis so all people can play with Travis-CI images. (<a href="https://github.com/jekyll/jekyll/issues/4338">#4338</a>)</li>
1316
- <li>Move Cucumber to using RSpec-Expections and furthering JRuby support. (<a href="https://github.com/jekyll/jekyll/issues/4343">#4343</a>)</li>
1317
- <li>Rearrange Cucumber and add some flair. (<a href="https://github.com/jekyll/jekyll/issues/4347">#4347</a>)</li>
1318
- <li>Remove old FIXME (<a href="https://github.com/jekyll/jekyll/issues/4349">#4349</a>)</li>
1319
- <li>Clean up the Gemfile (and keep all the necessary dependencies) (<a href="https://github.com/jekyll/jekyll/issues/4350">#4350</a>)</li>
1320
- </ul>
1321
-
1322
- <h3 id="site-enhancements-v3-1-0">Site Enhancements</h3>
1323
-
1324
- <ul>
1325
- <li>Add three plugins to directory (<a href="https://github.com/jekyll/jekyll/issues/4163">#4163</a>)</li>
1326
- <li>Add upgrading docs from 2.x to 3.x (<a href="https://github.com/jekyll/jekyll/issues/4157">#4157</a>)</li>
1327
- <li>Add <code class="highlighter-rouge">protect_email</code> to the plugins index. (<a href="https://github.com/jekyll/jekyll/issues/4169">#4169</a>)</li>
1328
- <li>Add <code class="highlighter-rouge">jekyll-deploy</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4179">#4179</a>)</li>
1329
- <li>Clarify plugin docs (<a href="https://github.com/jekyll/jekyll/issues/4154">#4154</a>)</li>
1330
- <li>Add Kickster to deployment methods in documentation (<a href="https://github.com/jekyll/jekyll/issues/4190">#4190</a>)</li>
1331
- <li>Add DavidBurela’s tutorial for Windows to Windows docs page (<a href="https://github.com/jekyll/jekyll/issues/4210">#4210</a>)</li>
1332
- <li>Change GitHub code block to highlight tag to avoid it overlaps parent div (<a href="https://github.com/jekyll/jekyll/issues/4121">#4121</a>)</li>
1333
- <li>Update FormKeep link to be something more specific to Jekyll (<a href="https://github.com/jekyll/jekyll/issues/4243">#4243</a>)</li>
1334
- <li>Remove example Roger Chapman site, as the domain doesn’t exist (<a href="https://github.com/jekyll/jekyll/issues/4249">#4249</a>)</li>
1335
- <li>Added configuration options for <code class="highlighter-rouge">draft_posts</code> to configuration docs (<a href="https://github.com/jekyll/jekyll/issues/4251">#4251</a>)</li>
1336
- <li>Fix checklist in <code class="highlighter-rouge">_assets.md</code> (<a href="https://github.com/jekyll/jekyll/issues/4259">#4259</a>)</li>
1337
- <li>Add Markdown examples to Pages docs (<a href="https://github.com/jekyll/jekyll/issues/4275">#4275</a>)</li>
1338
- <li>Add jekyll-paginate-category to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4273">#4273</a>)</li>
1339
- <li>Add <code class="highlighter-rouge">jekyll-responsive_image</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4286">#4286</a>)</li>
1340
- <li>Add <code class="highlighter-rouge">jekyll-commonmark</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4299">#4299</a>)</li>
1341
- <li>Add documentation for incremental regeneration (<a href="https://github.com/jekyll/jekyll/issues/4293">#4293</a>)</li>
1342
- <li>Add note about removal of relative permalink support in upgrading docs (<a href="https://github.com/jekyll/jekyll/issues/4303">#4303</a>)</li>
1343
- <li>Add Pro Tip to use front matter variable to create clean URLs (<a href="https://github.com/jekyll/jekyll/issues/4296">#4296</a>)</li>
1344
- <li>Fix grammar in the documentation for posts. (<a href="https://github.com/jekyll/jekyll/issues/4330">#4330</a>)</li>
1345
- <li>Add documentation for smartify Liquid filter (<a href="https://github.com/jekyll/jekyll/issues/4333">#4333</a>)</li>
1346
- <li>Fixed broken link to blog on using mathjax with jekyll (<a href="https://github.com/jekyll/jekyll/issues/4344">#4344</a>)</li>
1347
- <li>Documentation: correct reference in Precedence section of Configuration docs (<a href="https://github.com/jekyll/jekyll/issues/4355">#4355</a>)</li>
1348
- <li>Add <a href="https://github.com/jmcglone">@jmcglone</a>’s guide to github-pages doc page (<a href="https://github.com/jekyll/jekyll/issues/4364">#4364</a>)</li>
1349
- <li>Added the Wordpress2Jekyll Wordpress plugin (<a href="https://github.com/jekyll/jekyll/issues/4377">#4377</a>)</li>
1350
- <li>Add Contentful Extension to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4390">#4390</a>)</li>
1351
- <li>Correct Minor spelling error (<a href="https://github.com/jekyll/jekyll/issues/4394">#4394</a>)</li>
1352
- </ul>
1353
-
1354
- <h2 id="v3-0-5">3.0.5 / 2016-04-26</h2>
1355
-
1356
- <ul>
1357
- <li>Remove call to <code class="highlighter-rouge">#backwards_compatibilize</code> in <code class="highlighter-rouge">Configuration.from</code> (<a href="https://github.com/jekyll/jekyll/issues/4846">#4846</a>)</li>
1358
- </ul>
1359
-
1360
- <h2 id="v3-0-4">3.0.4 / 2016-04-18</h2>
1361
-
1362
- <ul>
1363
- <li>Fix defaults for Documents to lookup defaults based on <code class="highlighter-rouge">relative_path</code> instead of <code class="highlighter-rouge">url</code> (<a href="https://github.com/jekyll/jekyll/issues/4806">#4806</a>)</li>
1364
- <li>Configuration: allow users to specify a <code class="highlighter-rouge">collections.posts.permalink</code> directly without <code class="highlighter-rouge">permalink</code> clobbering it (<a href="https://github.com/jekyll/jekyll/issues/4753">#4753</a>)</li>
1365
- </ul>
1366
-
1367
- <h2 id="v3-0-3">3.0.3 / 2016-02-08</h2>
1368
-
1369
- <h3 id="bug-fixes-v3-0-3">Bug Fixes</h3>
1370
-
1371
- <ul>
1372
- <li>Fix extension weirdness with folders (<a href="https://github.com/jekyll/jekyll/issues/4493">#4493</a>)</li>
1373
- <li>EntryFilter: only include ‘excluded’ log on excluded files (<a href="https://github.com/jekyll/jekyll/issues/4479">#4479</a>)</li>
1374
- <li>
1375
- <code class="highlighter-rouge">Jekyll.sanitized_path</code>: escape tildes before sanitizing a questionable path (<a href="https://github.com/jekyll/jekyll/issues/4468">#4468</a>)</li>
1376
- <li>
1377
- <code class="highlighter-rouge">LiquidRenderer#parse</code>: parse with line numbers (<a href="https://github.com/jekyll/jekyll/issues/4453">#4453</a>)</li>
1378
- <li>
1379
- <code class="highlighter-rouge">Document#&lt;=&gt;</code>: protect against nil comparison in dates. (<a href="https://github.com/jekyll/jekyll/issues/4446">#4446</a>)</li>
1380
- </ul>
1381
-
1382
- <h2 id="v3-0-2">3.0.2 / 2016-01-20</h2>
1383
-
1384
- <h3 id="bug-fixes-v3-0-2">Bug Fixes</h3>
1385
-
1386
- <ul>
1387
- <li>Document: throw a useful error when an invalid date is given (<a href="https://github.com/jekyll/jekyll/issues/4378">#4378</a>)</li>
1388
- </ul>
1389
-
1390
- <h2 id="v3-0-1">3.0.1 / 2015-11-17</h2>
1391
-
1392
- <h3 id="bug-fixes-v3-0-1">Bug Fixes</h3>
1393
-
1394
- <ul>
1395
- <li>Document: only superdirectories of the collection are categories (<a href="https://github.com/jekyll/jekyll/issues/4110">#4110</a>)</li>
1396
- <li>
1397
- <code class="highlighter-rouge">Convertible#render_liquid</code> should use <code class="highlighter-rouge">render!</code> to cause failure on bad Liquid (<a href="https://github.com/jekyll/jekyll/issues/4077">#4077</a>)</li>
1398
- <li>Don’t generate <code class="highlighter-rouge">.jekyll-metadata</code> in non-incremental build (<a href="https://github.com/jekyll/jekyll/issues/4079">#4079</a>)</li>
1399
- <li>Set <code class="highlighter-rouge">highlighter</code> config val to <code class="highlighter-rouge">kramdown.syntax_highlighter</code> (<a href="https://github.com/jekyll/jekyll/issues/4090">#4090</a>)</li>
1400
- <li>Align hooks implementation with documentation (<a href="https://github.com/jekyll/jekyll/issues/4104">#4104</a>)</li>
1401
- <li>Fix the deprecation warning in the doctor command (<a href="https://github.com/jekyll/jekyll/issues/4114">#4114</a>)</li>
1402
- <li>Fix case in <code class="highlighter-rouge">:title</code> and add <code class="highlighter-rouge">:slug</code> which is downcased (<a href="https://github.com/jekyll/jekyll/issues/4100">#4100</a>)</li>
1403
- </ul>
1404
-
1405
- <h3 id="development-fixes-v3-0-1">Development Fixes</h3>
1406
-
1407
- <ul>
1408
- <li>Fix test warnings when doing rake {test,spec} or script/test (<a href="https://github.com/jekyll/jekyll/issues/4078">#4078</a>)</li>
1409
- </ul>
1410
-
1411
- <h3 id="site-enhancements-v3-0-1">Site Enhancements</h3>
1412
-
1413
- <ul>
1414
- <li>Update normalize.css to v3.0.3. (<a href="https://github.com/jekyll/jekyll/issues/4085">#4085</a>)</li>
1415
- <li>Update Font Awesome to v4.4.0. (<a href="https://github.com/jekyll/jekyll/issues/4086">#4086</a>)</li>
1416
- <li>Adds a note about installing the jekyll-gist gem to make gist tag work (<a href="https://github.com/jekyll/jekyll/issues/4101">#4101</a>)</li>
1417
- <li>Align hooks documentation with implementation (<a href="https://github.com/jekyll/jekyll/issues/4104">#4104</a>)</li>
1418
- <li>Add Jekyll Flickr Plugin to the list of third party plugins (<a href="https://github.com/jekyll/jekyll/issues/4111">#4111</a>)</li>
1419
- <li>Remove link to now-deleted blog post (<a href="https://github.com/jekyll/jekyll/issues/4125">#4125</a>)</li>
1420
- <li>Update the liquid syntax in the pagination docs (<a href="https://github.com/jekyll/jekyll/issues/4130">#4130</a>)</li>
1421
- <li>Add jekyll-language-plugin to plugins.md (<a href="https://github.com/jekyll/jekyll/issues/4134">#4134</a>)</li>
1422
- <li>Updated to reflect feedback in <a href="https://github.com/jekyll/jekyll/issues/4129">#4129</a> (<a href="https://github.com/jekyll/jekyll/issues/4137">#4137</a>)</li>
1423
- <li>Clarify assets.md based on feedback of <a href="https://github.com/jekyll/jekyll/issues/4129">#4129</a> (<a href="https://github.com/jekyll/jekyll/issues/4142">#4142</a>)</li>
1424
- <li>Re-correct the liquid syntax in the pagination docs (<a href="https://github.com/jekyll/jekyll/issues/4140">#4140</a>)</li>
1425
- </ul>
1426
-
1427
- <h2 id="v3-0-0">3.0.0 / 2015-10-26</h2>
1428
-
1429
- <h3 id="major-enhancements-v3-0-0">Major Enhancements</h3>
1430
-
1431
- <ul>
1432
- <li>Liquid profiler (i.e. know how fast or slow your templates render) (<a href="https://github.com/jekyll/jekyll/issues/3762">#3762</a>)</li>
1433
- <li>Incremental regeneration (<a href="https://github.com/jekyll/jekyll/issues/3116">#3116</a>)</li>
1434
- <li>Add Hooks: a new kind of plugin (<a href="https://github.com/jekyll/jekyll/issues/3553">#3553</a>)</li>
1435
- <li>Upgrade to Liquid 3.0.0 (<a href="https://github.com/jekyll/jekyll/issues/3002">#3002</a>)</li>
1436
- <li>
1437
- <code class="highlighter-rouge">site.posts</code> is now a Collection instead of an Array (<a href="https://github.com/jekyll/jekyll/issues/4055">#4055</a>)</li>
1438
- <li>Add basic support for JRuby (commit: 0f4477)</li>
1439
- <li>Drop support for Ruby 1.9.3. (<a href="https://github.com/jekyll/jekyll/issues/3235">#3235</a>)</li>
1440
- <li>Support Ruby v2.2 (<a href="https://github.com/jekyll/jekyll/issues/3234">#3234</a>)</li>
1441
- <li>Support RDiscount 2 (<a href="https://github.com/jekyll/jekyll/issues/2767">#2767</a>)</li>
1442
- <li>Remove most runtime deps (<a href="https://github.com/jekyll/jekyll/issues/3323">#3323</a>)</li>
1443
- <li>Move to Rouge as default highlighter (<a href="https://github.com/jekyll/jekyll/issues/3323">#3323</a>)</li>
1444
- <li>Mimic GitHub Pages <code class="highlighter-rouge">.html</code> extension stripping behavior in WEBrick (<a href="https://github.com/jekyll/jekyll/issues/3452">#3452</a>)</li>
1445
- <li>Always include file extension on output files (<a href="https://github.com/jekyll/jekyll/issues/3490">#3490</a>)</li>
1446
- <li>Improved permalinks for pages and collections (<a href="https://github.com/jekyll/jekyll/issues/3538">#3538</a>)</li>
1447
- <li>Sunset (i.e. remove) Maruku (<a href="https://github.com/jekyll/jekyll/issues/3655">#3655</a>)</li>
1448
- <li>Remove support for relative permalinks (<a href="https://github.com/jekyll/jekyll/issues/3679">#3679</a>)</li>
1449
- <li>Iterate over <code class="highlighter-rouge">site.collections</code> as an array instead of a hash. (<a href="https://github.com/jekyll/jekyll/issues/3670">#3670</a>)</li>
1450
- <li>Adapt StaticFile for collections, config defaults (<a href="https://github.com/jekyll/jekyll/issues/3823">#3823</a>)</li>
1451
- <li>Add a Code of Conduct for the Jekyll project (<a href="https://github.com/jekyll/jekyll/issues/3925">#3925</a>)</li>
1452
- <li>Added permalink time variables (<a href="https://github.com/jekyll/jekyll/issues/3990">#3990</a>)</li>
1453
- <li>Add <code class="highlighter-rouge">--incremental</code> flag to enable incremental regen (disabled by default) (<a href="https://github.com/jekyll/jekyll/issues/4059">#4059</a>)</li>
1454
- </ul>
1455
-
1456
- <h3 id="minor-enhancements-v3-0-0">Minor Enhancements</h3>
1457
-
1458
- <ul>
1459
- <li>Deprecate access to Document#data properties and Collection#docs methods (<a href="https://github.com/jekyll/jekyll/issues/4058">#4058</a>)</li>
1460
- <li>Sort static files just once, and call <code class="highlighter-rouge">site_payload</code> once for all collections (<a href="https://github.com/jekyll/jekyll/issues/3204">#3204</a>)</li>
1461
- <li>Separate <code class="highlighter-rouge">jekyll docs</code> and optimize external gem handling (<a href="https://github.com/jekyll/jekyll/issues/3241">#3241</a>)</li>
1462
- <li>Improve <code class="highlighter-rouge">Site#getConverterImpl</code> and call it <code class="highlighter-rouge">Site#find_converter_instance</code> (<a href="https://github.com/jekyll/jekyll/issues/3240">#3240</a>)</li>
1463
- <li>Use relative path for <code class="highlighter-rouge">path</code> Liquid variable in Documents for consistency (<a href="https://github.com/jekyll/jekyll/issues/2908">#2908</a>)</li>
1464
- <li>Generalize <code class="highlighter-rouge">Utils#slugify</code> for any scripts (<a href="https://github.com/jekyll/jekyll/issues/3047">#3047</a>)</li>
1465
- <li>Added basic microdata to post template in site template (<a href="https://github.com/jekyll/jekyll/issues/3189">#3189</a>)</li>
1466
- <li>Store log messages in an array of messages. (<a href="https://github.com/jekyll/jekyll/issues/3244">#3244</a>)</li>
1467
- <li>Allow collection documents to override <code class="highlighter-rouge">output</code> property in front matter (<a href="https://github.com/jekyll/jekyll/issues/3172">#3172</a>)</li>
1468
- <li>Keep file modification times between builds for static files (<a href="https://github.com/jekyll/jekyll/issues/3220">#3220</a>)</li>
1469
- <li>Only downcase mixed-case categories for the URL (<a href="https://github.com/jekyll/jekyll/issues/2571">#2571</a>)</li>
1470
- <li>Added per post <code class="highlighter-rouge">excerpt_separator</code> functionality (<a href="https://github.com/jekyll/jekyll/issues/3274">#3274</a>)</li>
1471
- <li>Allow collections YAML to end with three dots (<a href="https://github.com/jekyll/jekyll/issues/3134">#3134</a>)</li>
1472
- <li>Add mode parameter to <code class="highlighter-rouge">slugify</code> Liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2918">#2918</a>)</li>
1473
- <li>Perf: <code class="highlighter-rouge">Markdown#matches</code> should avoid regexp (<a href="https://github.com/jekyll/jekyll/issues/3321">#3321</a>)</li>
1474
- <li>Perf: Use frozen regular expressions for <code class="highlighter-rouge">Utils#slugify</code> (<a href="https://github.com/jekyll/jekyll/issues/3321">#3321</a>)</li>
1475
- <li>Split off Textile support into jekyll-textile-converter (<a href="https://github.com/jekyll/jekyll/issues/3319">#3319</a>)</li>
1476
- <li>Improve the navigation menu alignment in the site template on small screens (<a href="https://github.com/jekyll/jekyll/issues/3331">#3331</a>)</li>
1477
- <li>Show the regeneration time after the initial generation (<a href="https://github.com/jekyll/jekyll/issues/3378">#3378</a>)</li>
1478
- <li>Site template: Switch default font to Helvetica Neue (<a href="https://github.com/jekyll/jekyll/issues/3376">#3376</a>)</li>
1479
- <li>Make the <code class="highlighter-rouge">include</code> tag a teensy bit faster. (<a href="https://github.com/jekyll/jekyll/issues/3391">#3391</a>)</li>
1480
- <li>Add <code class="highlighter-rouge">pkill -f jekyll</code> to ways to kill. (<a href="https://github.com/jekyll/jekyll/issues/3397">#3397</a>)</li>
1481
- <li>Site template: collapsed, variable-driven font declaration (<a href="https://github.com/jekyll/jekyll/issues/3360">#3360</a>)</li>
1482
- <li>Site template: Don’t always show the scrollbar in code blocks (<a href="https://github.com/jekyll/jekyll/issues/3419">#3419</a>)</li>
1483
- <li>Site template: Remove undefined <code class="highlighter-rouge">text</code> class from <code class="highlighter-rouge">p</code> element (<a href="https://github.com/jekyll/jekyll/issues/3440">#3440</a>)</li>
1484
- <li>Site template: Optimize text rendering for legibility (<a href="https://github.com/jekyll/jekyll/issues/3382">#3382</a>)</li>
1485
- <li>Add <code class="highlighter-rouge">draft?</code> method to identify if Post is a Draft &amp; expose to Liquid (<a href="https://github.com/jekyll/jekyll/issues/3456">#3456</a>)</li>
1486
- <li>Write regeneration metadata even on full rebuild (<a href="https://github.com/jekyll/jekyll/issues/3464">#3464</a>)</li>
1487
- <li>Perf: Use <code class="highlighter-rouge">String#end_with?("/")</code> instead of regexp when checking paths (<a href="https://github.com/jekyll/jekyll/issues/3516">#3516</a>)</li>
1488
- <li>Docs: document ‘ordinal’ built-in permalink style (<a href="https://github.com/jekyll/jekyll/issues/3532">#3532</a>)</li>
1489
- <li>Upgrade liquid-c to 3.x (<a href="https://github.com/jekyll/jekyll/issues/3531">#3531</a>)</li>
1490
- <li>Use consistent syntax for deprecation warning (<a href="https://github.com/jekyll/jekyll/issues/3535">#3535</a>)</li>
1491
- <li>Added build –destination and –source flags (<a href="https://github.com/jekyll/jekyll/issues/3418">#3418</a>)</li>
1492
- <li>Site template: remove unused <code class="highlighter-rouge">page.meta</code> attribute (<a href="https://github.com/jekyll/jekyll/issues/3537">#3537</a>)</li>
1493
- <li>Improve the error message when sorting null objects (<a href="https://github.com/jekyll/jekyll/issues/3520">#3520</a>)</li>
1494
- <li>Added liquid-md5 plugin (<a href="https://github.com/jekyll/jekyll/issues/3598">#3598</a>)</li>
1495
- <li>Documentation: RR replaced with RSpec Mocks (<a href="https://github.com/jekyll/jekyll/issues/3600">#3600</a>)</li>
1496
- <li>Documentation: Fix subpath. (<a href="https://github.com/jekyll/jekyll/issues/3599">#3599</a>)</li>
1497
- <li>Create ‘tmp’ dir for test_tags if it doesn’t exist (<a href="https://github.com/jekyll/jekyll/issues/3609">#3609</a>)</li>
1498
- <li>Extract reading of data from <code class="highlighter-rouge">Site</code> to reduce responsibilities. (<a href="https://github.com/jekyll/jekyll/issues/3545">#3545</a>)</li>
1499
- <li>Removed the word ‘Jekyll’ a few times from the comments (<a href="https://github.com/jekyll/jekyll/issues/3617">#3617</a>)</li>
1500
- <li>
1501
- <code class="highlighter-rouge">bin/jekyll</code>: with no args, exit with exit code 1 (<a href="https://github.com/jekyll/jekyll/issues/3619">#3619</a>)</li>
1502
- <li>Incremental build if destination file missing (<a href="https://github.com/jekyll/jekyll/issues/3614">#3614</a>)</li>
1503
- <li>Static files <code class="highlighter-rouge">mtime</code> liquid should return a <code class="highlighter-rouge">Time</code> obj (<a href="https://github.com/jekyll/jekyll/issues/3596">#3596</a>)</li>
1504
- <li>Use <code class="highlighter-rouge">Jekyll::Post</code>s for both LSI indexing and lookup. (<a href="https://github.com/jekyll/jekyll/issues/3629">#3629</a>)</li>
1505
- <li>Add <code class="highlighter-rouge">charset=utf-8</code> for HTML and XML pages in WEBrick (<a href="https://github.com/jekyll/jekyll/issues/3649">#3649</a>)</li>
1506
- <li>Set log level to debug when verbose flag is set (<a href="https://github.com/jekyll/jekyll/issues/3665">#3665</a>)</li>
1507
- <li>Added a mention on the Gemfile to complete the instructions (<a href="https://github.com/jekyll/jekyll/issues/3671">#3671</a>)</li>
1508
- <li>Perf: Cache <code class="highlighter-rouge">Document#to_liquid</code> and invalidate where necessary (<a href="https://github.com/jekyll/jekyll/issues/3693">#3693</a>)</li>
1509
- <li>Perf: <code class="highlighter-rouge">Jekyll::Cleaner#existing_files</code>: Call <code class="highlighter-rouge">keep_file_regex</code> and <code class="highlighter-rouge">keep_dirs</code> only once, not once per iteration (<a href="https://github.com/jekyll/jekyll/issues/3696">#3696</a>)</li>
1510
- <li>Omit jekyll/jekyll-help from list of resources. (<a href="https://github.com/jekyll/jekyll/issues/3698">#3698</a>)</li>
1511
- <li>Add basic <code class="highlighter-rouge">jekyll doctor</code> test to detect fsnotify (OSX) anomalies. (<a href="https://github.com/jekyll/jekyll/issues/3704">#3704</a>)</li>
1512
- <li>Added talk.jekyllrb.com to “Have questions?” (<a href="https://github.com/jekyll/jekyll/issues/3694">#3694</a>)</li>
1513
- <li>Performance: Sort files only once (<a href="https://github.com/jekyll/jekyll/issues/3707">#3707</a>)</li>
1514
- <li>Performance: Marshal metadata (<a href="https://github.com/jekyll/jekyll/issues/3706">#3706</a>)</li>
1515
- <li>Upgrade highlight wrapper from <code class="highlighter-rouge">div</code> to <code class="highlighter-rouge">figure</code> (<a href="https://github.com/jekyll/jekyll/issues/3779">#3779</a>)</li>
1516
- <li>Upgrade mime-types to <code class="highlighter-rouge">~&gt; 2.6</code> (<a href="https://github.com/jekyll/jekyll/issues/3795">#3795</a>)</li>
1517
- <li>Update windows.md with Ruby version info (<a href="https://github.com/jekyll/jekyll/issues/3818">#3818</a>)</li>
1518
- <li>Make the directory for includes configurable (<a href="https://github.com/jekyll/jekyll/issues/3782">#3782</a>)</li>
1519
- <li>Rename directory configurations to match <code class="highlighter-rouge">*_dir</code> convention for consistency (<a href="https://github.com/jekyll/jekyll/issues/3782">#3782</a>)</li>
1520
- <li>Internal: trigger hooks by owner symbol (<a href="https://github.com/jekyll/jekyll/issues/3871">#3871</a>)</li>
1521
- <li>Update MIME types from mime-db (<a href="https://github.com/jekyll/jekyll/issues/3933">#3933</a>)</li>
1522
- <li>Add header to site template <code class="highlighter-rouge">_config.yml</code> for clarity &amp; direction (<a href="https://github.com/jekyll/jekyll/issues/3997">#3997</a>)</li>
1523
- <li>Site template: add timezone offset to post date frontmatter (<a href="https://github.com/jekyll/jekyll/issues/4001">#4001</a>)</li>
1524
- <li>Make a constant for the regex to find hidden files (<a href="https://github.com/jekyll/jekyll/issues/4032">#4032</a>)</li>
1525
- <li>Site template: refactor github &amp; twitter icons into includes (<a href="https://github.com/jekyll/jekyll/issues/4049">#4049</a>)</li>
1526
- <li>Site template: add background to Kramdown Rouge-ified backtick code blocks (<a href="https://github.com/jekyll/jekyll/issues/4053">#4053</a>)</li>
1527
- </ul>
1528
-
1529
- <h3 id="bug-fixes-v3-0-0">Bug Fixes</h3>
1530
-
1531
- <ul>
1532
- <li>
1533
- <code class="highlighter-rouge">post_url</code>: fix access deprecation warning &amp; fix deprecation msg (<a href="https://github.com/jekyll/jekyll/issues/4060">#4060</a>)</li>
1534
- <li>Perform jekyll-paginate deprecation warning correctly. (<a href="https://github.com/jekyll/jekyll/issues/3580">#3580</a>)</li>
1535
- <li>Make permalink parsing consistent with pages (<a href="https://github.com/jekyll/jekyll/issues/3014">#3014</a>)</li>
1536
- <li>
1537
- <code class="highlighter-rouge">time()</code>pre-filter method should accept a <code class="highlighter-rouge">Date</code> object (<a href="https://github.com/jekyll/jekyll/issues/3299">#3299</a>)</li>
1538
- <li>Remove unneeded end tag for <code class="highlighter-rouge">link</code> in site template (<a href="https://github.com/jekyll/jekyll/issues/3236">#3236</a>)</li>
1539
- <li>Kramdown: Use <code class="highlighter-rouge">enable_coderay</code> key instead of <code class="highlighter-rouge">use_coderay</code> (<a href="https://github.com/jekyll/jekyll/issues/3237">#3237</a>)</li>
1540
- <li>Unescape <code class="highlighter-rouge">Document</code> output path (<a href="https://github.com/jekyll/jekyll/issues/2924">#2924</a>)</li>
1541
- <li>Fix nav items alignment when on multiple rows (<a href="https://github.com/jekyll/jekyll/issues/3264">#3264</a>)</li>
1542
- <li>Highlight: Only Strip Newlines/Carriage Returns, not Spaces (<a href="https://github.com/jekyll/jekyll/issues/3278">#3278</a>)</li>
1543
- <li>Find variables in front matter defaults by searching with relative file path. (<a href="https://github.com/jekyll/jekyll/issues/2774">#2774</a>)</li>
1544
- <li>Allow variables (e.g <code class="highlighter-rouge">:categories</code>) in YAML front matter permalinks (<a href="https://github.com/jekyll/jekyll/issues/3320">#3320</a>)</li>
1545
- <li>Handle nil URL placeholders in permalinks (<a href="https://github.com/jekyll/jekyll/issues/3325">#3325</a>)</li>
1546
- <li>Template: Fix nav items alignment when in “burger” mode (<a href="https://github.com/jekyll/jekyll/issues/3329">#3329</a>)</li>
1547
- <li>Template: Remove <code class="highlighter-rouge">!important</code> from nav SCSS introduced in <a href="https://github.com/jekyll/jekyll/issues/3329">#3329</a> (<a href="https://github.com/jekyll/jekyll/issues/3375">#3375</a>)</li>
1548
- <li>The <code class="highlighter-rouge">:title</code> URL placeholder for collections should be the filename slug. (<a href="https://github.com/jekyll/jekyll/issues/3383">#3383</a>)</li>
1549
- <li>Trim the generate time diff to just 3 places past the decimal place (<a href="https://github.com/jekyll/jekyll/issues/3415">#3415</a>)</li>
1550
- <li>The highlight tag should only clip the newlines before and after the <em>entire</em> block, not in between (<a href="https://github.com/jekyll/jekyll/issues/3401">#3401</a>)</li>
1551
- <li>highlight: fix problem with linenos and rouge. (<a href="https://github.com/jekyll/jekyll/issues/3436">#3436</a>)</li>
1552
- <li>
1553
- <code class="highlighter-rouge">Site#read_data_file</code>: read CSV’s with proper file encoding (<a href="https://github.com/jekyll/jekyll/issues/3455">#3455</a>)</li>
1554
- <li>Ignore <code class="highlighter-rouge">.jekyll-metadata</code> in site template (<a href="https://github.com/jekyll/jekyll/issues/3496">#3496</a>)</li>
1555
- <li>Template: Point documentation link to the documentation pages (<a href="https://github.com/jekyll/jekyll/issues/3502">#3502</a>)</li>
1556
- <li>Removed the trailing slash from the example <code class="highlighter-rouge">/blog</code> baseurl comment (<a href="https://github.com/jekyll/jekyll/issues/3485">#3485</a>)</li>
1557
- <li>Clear the regenerator cache every time we process (<a href="https://github.com/jekyll/jekyll/issues/3592">#3592</a>)</li>
1558
- <li>Readd (bring back) minitest-profile (<a href="https://github.com/jekyll/jekyll/issues/3628">#3628</a>)</li>
1559
- <li>Add WOFF2 font MIME type to Jekyll server MIME types (<a href="https://github.com/jekyll/jekyll/issues/3647">#3647</a>)</li>
1560
- <li>Be smarter about extracting the extname in <code class="highlighter-rouge">StaticFile</code> (<a href="https://github.com/jekyll/jekyll/issues/3632">#3632</a>)</li>
1561
- <li>Process metadata for all dependencies (<a href="https://github.com/jekyll/jekyll/issues/3608">#3608</a>)</li>
1562
- <li>Show error message if the YAML front matter on a page/post is invalid. (<a href="https://github.com/jekyll/jekyll/issues/3643">#3643</a>)</li>
1563
- <li>Upgrade redcarpet to 3.2 (Security fix: OSVDB-120415) (<a href="https://github.com/jekyll/jekyll/issues/3652">#3652</a>)</li>
1564
- <li>Create #mock_expects that goes directly to RSpec Mocks. (<a href="https://github.com/jekyll/jekyll/issues/3658">#3658</a>)</li>
1565
- <li>Open <code class="highlighter-rouge">.jekyll-metadata</code> in binary mode to read binary Marshal data (<a href="https://github.com/jekyll/jekyll/issues/3713">#3713</a>)</li>
1566
- <li>Incremental regeneration: handle deleted, renamed, and moved dependencies (<a href="https://github.com/jekyll/jekyll/issues/3717">#3717</a>)</li>
1567
- <li>Fix typo on line 19 of pagination.md (<a href="https://github.com/jekyll/jekyll/issues/3760">#3760</a>)</li>
1568
- <li>Fix it so that ‘blog.html’ matches ‘blog.html’ (<a href="https://github.com/jekyll/jekyll/issues/3732">#3732</a>)</li>
1569
- <li>Remove occasionally-problematic <code class="highlighter-rouge">ensure</code> in <code class="highlighter-rouge">LiquidRenderer</code> (<a href="https://github.com/jekyll/jekyll/issues/3811">#3811</a>)</li>
1570
- <li>Fixed an unclear code comment in site template SCSS (<a href="https://github.com/jekyll/jekyll/issues/3837">#3837</a>)</li>
1571
- <li>Fix reading of binary metadata file (<a href="https://github.com/jekyll/jekyll/issues/3845">#3845</a>)</li>
1572
- <li>Remove var collision with site template header menu iteration variable (<a href="https://github.com/jekyll/jekyll/issues/3838">#3838</a>)</li>
1573
- <li>Change non-existent <code class="highlighter-rouge">hl_linenos</code> to <code class="highlighter-rouge">hl_lines</code> to allow passthrough in safe mode (<a href="https://github.com/jekyll/jekyll/issues/3787">#3787</a>)</li>
1574
- <li>Add missing flag to disable the watcher (<a href="https://github.com/jekyll/jekyll/issues/3820">#3820</a>)</li>
1575
- <li>Update CI guide to include more direct explanations of the flow (<a href="https://github.com/jekyll/jekyll/issues/3891">#3891</a>)</li>
1576
- <li>Set <code class="highlighter-rouge">future</code> to <code class="highlighter-rouge">false</code> in the default config (<a href="https://github.com/jekyll/jekyll/issues/3892">#3892</a>)</li>
1577
- <li>filters: <code class="highlighter-rouge">where</code> should compare stringified versions of input &amp; comparator (<a href="https://github.com/jekyll/jekyll/issues/3935">#3935</a>)</li>
1578
- <li>Read build options for <code class="highlighter-rouge">jekyll clean</code> command (<a href="https://github.com/jekyll/jekyll/issues/3828">#3828</a>)</li>
1579
- <li>Fix <a href="https://github.com/jekyll/jekyll/issues/3970">#3970</a>: Use Gem::Version to compare versions, not <code class="highlighter-rouge">&gt;</code>.</li>
1580
- <li>Abort if no subcommand. Fixes confusing message. (<a href="https://github.com/jekyll/jekyll/issues/3992">#3992</a>)</li>
1581
- <li>Whole-post excerpts should match the post content (<a href="https://github.com/jekyll/jekyll/issues/4004">#4004</a>)</li>
1582
- <li>Change default font weight to 400 to fix bold/strong text issues (<a href="https://github.com/jekyll/jekyll/issues/4050">#4050</a>)</li>
1583
- <li>Document: Only auto-generate the excerpt if it’s not overridden (<a href="https://github.com/jekyll/jekyll/issues/4062">#4062</a>)</li>
1584
- <li>Utils: <code class="highlighter-rouge">deep_merge_hashes</code> should also merge <code class="highlighter-rouge">default_proc</code> (45f69bb)</li>
1585
- <li>Defaults: compare paths in <code class="highlighter-rouge">applies_path?</code> as <code class="highlighter-rouge">String</code>s to avoid confusion (7b81f00)</li>
1586
- </ul>
1587
-
1588
- <h3 id="development-fixes-v3-0-0">Development Fixes</h3>
1589
-
1590
- <ul>
1591
- <li>Remove loader.rb and “modernize” <code class="highlighter-rouge">script/test</code>. (<a href="https://github.com/jekyll/jekyll/issues/3574">#3574</a>)</li>
1592
- <li>Improve the grammar in the documentation (<a href="https://github.com/jekyll/jekyll/issues/3233">#3233</a>)</li>
1593
- <li>Update the LICENSE text to match the MIT license exactly (<a href="https://github.com/jekyll/jekyll/issues/3253">#3253</a>)</li>
1594
- <li>Update rake task <code class="highlighter-rouge">site:publish</code> to fix minor bugs. (<a href="https://github.com/jekyll/jekyll/issues/3254">#3254</a>)</li>
1595
- <li>Switch to shields.io for the README badges. (<a href="https://github.com/jekyll/jekyll/issues/3255">#3255</a>)</li>
1596
- <li>Use <code class="highlighter-rouge">FileList</code> instead of <code class="highlighter-rouge">Dir.glob</code> in <code class="highlighter-rouge">site:publish</code> rake task (<a href="https://github.com/jekyll/jekyll/issues/3261">#3261</a>)</li>
1597
- <li>Fix test script to be platform-independent (<a href="https://github.com/jekyll/jekyll/issues/3279">#3279</a>)</li>
1598
- <li>Instead of symlinking <code class="highlighter-rouge">/tmp</code>, create and symlink a local <code class="highlighter-rouge">tmp</code> in the tests (<a href="https://github.com/jekyll/jekyll/issues/3258">#3258</a>)</li>
1599
- <li>Fix some spacing (<a href="https://github.com/jekyll/jekyll/issues/3312">#3312</a>)</li>
1600
- <li>Fix comment typo in <code class="highlighter-rouge">lib/jekyll/frontmatter_defaults.rb</code> (<a href="https://github.com/jekyll/jekyll/issues/3322">#3322</a>)</li>
1601
- <li>Move all <code class="highlighter-rouge">regenerate?</code> checking to <code class="highlighter-rouge">Regenerator</code> (<a href="https://github.com/jekyll/jekyll/issues/3326">#3326</a>)</li>
1602
- <li>Factor out a <code class="highlighter-rouge">read_data_file</code> call to keep things clean (<a href="https://github.com/jekyll/jekyll/issues/3380">#3380</a>)</li>
1603
- <li>Proof the site with CircleCI. (<a href="https://github.com/jekyll/jekyll/issues/3427">#3427</a>)</li>
1604
- <li>Update LICENSE to 2015. (<a href="https://github.com/jekyll/jekyll/issues/3477">#3477</a>)</li>
1605
- <li>Upgrade tests to use Minitest (<a href="https://github.com/jekyll/jekyll/issues/3492">#3492</a>)</li>
1606
- <li>Remove trailing whitespace (<a href="https://github.com/jekyll/jekyll/issues/3497">#3497</a>)</li>
1607
- <li>Use <code class="highlighter-rouge">fixture_site</code> for Document tests (<a href="https://github.com/jekyll/jekyll/issues/3511">#3511</a>)</li>
1608
- <li>Remove adapters deprecation warning (<a href="https://github.com/jekyll/jekyll/issues/3529">#3529</a>)</li>
1609
- <li>Minor fixes to <code class="highlighter-rouge">url.rb</code> to follow GitHub style guide (<a href="https://github.com/jekyll/jekyll/issues/3544">#3544</a>)</li>
1610
- <li>Minor changes to resolve deprecation warnings (<a href="https://github.com/jekyll/jekyll/issues/3547">#3547</a>)</li>
1611
- <li>Convert remaining textile test documents to markdown (<a href="https://github.com/jekyll/jekyll/issues/3528">#3528</a>)</li>
1612
- <li>Migrate the tests to use rspec-mocks (<a href="https://github.com/jekyll/jekyll/issues/3552">#3552</a>)</li>
1613
- <li>Remove <code class="highlighter-rouge">activesupport</code> (<a href="https://github.com/jekyll/jekyll/issues/3612">#3612</a>)</li>
1614
- <li>Added tests for <code class="highlighter-rouge">Jekyll:StaticFile</code> (<a href="https://github.com/jekyll/jekyll/issues/3633">#3633</a>)</li>
1615
- <li>Force minitest version to 5.5.1 (<a href="https://github.com/jekyll/jekyll/issues/3657">#3657</a>)</li>
1616
- <li>Update the way cucumber accesses Minitest assertions (<a href="https://github.com/jekyll/jekyll/issues/3678">#3678</a>)</li>
1617
- <li>Add <code class="highlighter-rouge">script/rubyprof</code> to generate cachegrind callgraphs (<a href="https://github.com/jekyll/jekyll/issues/3692">#3692</a>)</li>
1618
- <li>Upgrade cucumber to 2.x (<a href="https://github.com/jekyll/jekyll/issues/3795">#3795</a>)</li>
1619
- <li>Update Kramdown. (<a href="https://github.com/jekyll/jekyll/issues/3853">#3853</a>)</li>
1620
- <li>Updated the scripts shebang for portability (<a href="https://github.com/jekyll/jekyll/issues/3858">#3858</a>)</li>
1621
- <li>Update JRuby testing to 9K (<a href="https://github.com/jekyll/jekyll/commit/3ab386f1b096be25a24fe038fc70fd0fb08d545d">3ab386f</a>)</li>
1622
- <li>Organize dependencies into dev and test groups. (<a href="https://github.com/jekyll/jekyll/issues/3852">#3852</a>)</li>
1623
- <li>Contributing.md should refer to <code class="highlighter-rouge">script/cucumber</code> (<a href="https://github.com/jekyll/jekyll/issues/3894">#3894</a>)</li>
1624
- <li>Update contributing documentation to reflect workflow updates (<a href="https://github.com/jekyll/jekyll/issues/3895">#3895</a>)</li>
1625
- <li>Add script to vendor mime types (<a href="https://github.com/jekyll/jekyll/issues/3933">#3933</a>)</li>
1626
- <li>Ignore .bundle dir in SimpleCov (<a href="https://github.com/jekyll/jekyll/issues/4033">#4033</a>)</li>
1627
- </ul>
1628
-
1629
- <h3 id="site-enhancements-v3-0-0">Site Enhancements</h3>
1630
-
1631
- <ul>
1632
- <li>Add ‘info’ labels to certain notes in collections docs (<a href="https://github.com/jekyll/jekyll/issues/3601">#3601</a>)</li>
1633
- <li>Remove extra spaces, make the last sentence less awkward in permalink docs (<a href="https://github.com/jekyll/jekyll/issues/3603">#3603</a>)</li>
1634
- <li>Update the permalinks documentation to reflect the updates for 3.0 (<a href="https://github.com/jekyll/jekyll/issues/3556">#3556</a>)</li>
1635
- <li>Add blog post announcing Jekyll Help (<a href="https://github.com/jekyll/jekyll/issues/3523">#3523</a>)</li>
1636
- <li>Add Jekyll Talk to Help page on site (<a href="https://github.com/jekyll/jekyll/issues/3518">#3518</a>)</li>
1637
- <li>Change Ajax pagination resource link to use HTTPS (<a href="https://github.com/jekyll/jekyll/issues/3570">#3570</a>)</li>
1638
- <li>Fixing the default host on docs (<a href="https://github.com/jekyll/jekyll/issues/3229">#3229</a>)</li>
1639
- <li>Add <code class="highlighter-rouge">jekyll-thumbnail-filter</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2790">#2790</a>)</li>
1640
- <li>Add link to ‘Adding Ajax pagination to Jekyll’ to Resources page (<a href="https://github.com/jekyll/jekyll/issues/3186">#3186</a>)</li>
1641
- <li>Add a Resources link to tutorial on building dynamic navbars (<a href="https://github.com/jekyll/jekyll/issues/3185">#3185</a>)</li>
1642
- <li>Semantic structure improvements to the post and page layouts (<a href="https://github.com/jekyll/jekyll/issues/3251">#3251</a>)</li>
1643
- <li>Add new AsciiDoc plugin to list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/3277">#3277</a>)</li>
1644
- <li>Specify that all transformable collection documents must contain YAML front matter (<a href="https://github.com/jekyll/jekyll/issues/3271">#3271</a>)</li>
1645
- <li>Assorted accessibility fixes (<a href="https://github.com/jekyll/jekyll/issues/3256">#3256</a>)</li>
1646
- <li>Update configuration docs to mention <code class="highlighter-rouge">keep_files</code> for <code class="highlighter-rouge">destination</code> (<a href="https://github.com/jekyll/jekyll/issues/3288">#3288</a>, <a href="https://github.com/jekyll/jekyll/issues/3296">#3296</a>)</li>
1647
- <li>Break when we successfully generate nav link to save CPU cycles. (<a href="https://github.com/jekyll/jekyll/issues/3291">#3291</a>)</li>
1648
- <li>Update usage docs to mention <code class="highlighter-rouge">keep_files</code> and a warning about <code class="highlighter-rouge">destination</code> cleaning (<a href="https://github.com/jekyll/jekyll/issues/3295">#3295</a>)</li>
1649
- <li>Add logic to automatically generate the <code class="highlighter-rouge">next_section</code> and <code class="highlighter-rouge">prev_section</code> navigation items (<a href="https://github.com/jekyll/jekyll/issues/3292">#3292</a>)</li>
1650
- <li>Some small fixes for the Plugins TOC. (<a href="https://github.com/jekyll/jekyll/issues/3306">#3306</a>)</li>
1651
- <li>Added versioning comment to configuration file (<a href="https://github.com/jekyll/jekyll/issues/3314">#3314</a>)</li>
1652
- <li>Add <code class="highlighter-rouge">jekyll-minifier</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3333">#3333</a>)</li>
1653
- <li>Add blog post about the Jekyll meet-up (<a href="https://github.com/jekyll/jekyll/issues/3332">#3332</a>)</li>
1654
- <li>Use <code class="highlighter-rouge">highlight</code> Liquid tag instead of the four-space tabs for code (<a href="https://github.com/jekyll/jekyll/issues/3336">#3336</a>)</li>
1655
- <li>3.0.0.beta1 release post (<a href="https://github.com/jekyll/jekyll/issues/3346">#3346</a>)</li>
1656
- <li>Add <code class="highlighter-rouge">twa</code> to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3384">#3384</a>)</li>
1657
- <li>Remove extra spaces (<a href="https://github.com/jekyll/jekyll/issues/3388">#3388</a>)</li>
1658
- <li>Fix small grammar errors on a couple pages (<a href="https://github.com/jekyll/jekyll/issues/3396">#3396</a>)</li>
1659
- <li>Fix typo on Templates docs page (<a href="https://github.com/jekyll/jekyll/issues/3420">#3420</a>)</li>
1660
- <li>s/three/four for plugin type list (<a href="https://github.com/jekyll/jekyll/issues/3424">#3424</a>)</li>
1661
- <li>Release jekyllrb.com as a locally-compiled site. (<a href="https://github.com/jekyll/jekyll/issues/3426">#3426</a>)</li>
1662
- <li>Add a jekyllrb.com/help page which elucidates places from which to get help (<a href="https://github.com/jekyll/jekyll/issues/3428">#3428</a>)</li>
1663
- <li>Remove extraneous dash on Plugins doc page which caused a formatting error (<a href="https://github.com/jekyll/jekyll/issues/3431">#3431</a>)</li>
1664
- <li>Fix broken link to Jordan Thornquest’s website. (<a href="https://github.com/jekyll/jekyll/issues/3438">#3438</a>)</li>
1665
- <li>Change the link to an extension (<a href="https://github.com/jekyll/jekyll/issues/3457">#3457</a>)</li>
1666
- <li>Fix Twitter link on the help page (<a href="https://github.com/jekyll/jekyll/issues/3466">#3466</a>)</li>
1667
- <li>Fix wording in code snippet highlighting section (<a href="https://github.com/jekyll/jekyll/issues/3475">#3475</a>)</li>
1668
- <li>Add a <code class="highlighter-rouge">/</code> to <code class="highlighter-rouge">paginate_path</code> in the Pagination documentation (<a href="https://github.com/jekyll/jekyll/issues/3479">#3479</a>)</li>
1669
- <li>Add a link on all the docs pages to “Improve this page”. (<a href="https://github.com/jekyll/jekyll/issues/3510">#3510</a>)</li>
1670
- <li>Add jekyll-auto-image generator to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3489">#3489</a>)</li>
1671
- <li>Replace link to the proposed <code class="highlighter-rouge">picture</code> element spec (<a href="https://github.com/jekyll/jekyll/issues/3530">#3530</a>)</li>
1672
- <li>Add frontmatter date formatting information (<a href="https://github.com/jekyll/jekyll/issues/3469">#3469</a>)</li>
1673
- <li>Improve consistency and clarity of plugins options note (<a href="https://github.com/jekyll/jekyll/issues/3546">#3546</a>)</li>
1674
- <li>Add permalink warning to pagination docs (<a href="https://github.com/jekyll/jekyll/issues/3551">#3551</a>)</li>
1675
- <li>Fix grammar in Collections docs API stability warning (<a href="https://github.com/jekyll/jekyll/issues/3560">#3560</a>)</li>
1676
- <li>Restructure <code class="highlighter-rouge">excerpt_separator</code> documentation for clarity (<a href="https://github.com/jekyll/jekyll/issues/3550">#3550</a>)</li>
1677
- <li>Fix accidental line break in collections docs (<a href="https://github.com/jekyll/jekyll/issues/3585">#3585</a>)</li>
1678
- <li>Add information about the <code class="highlighter-rouge">.jekyll-metadata</code> file (<a href="https://github.com/jekyll/jekyll/issues/3597">#3597</a>)</li>
1679
- <li>Document addition of variable parameters to an include (<a href="https://github.com/jekyll/jekyll/issues/3581">#3581</a>)</li>
1680
- <li>Add <code class="highlighter-rouge">jekyll-files</code> to the list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/3586">#3586</a>)</li>
1681
- <li>Define the <code class="highlighter-rouge">install</code> step in the CI example <code class="highlighter-rouge">.travis.yml</code> (<a href="https://github.com/jekyll/jekyll/issues/3622">#3622</a>)</li>
1682
- <li>Expand collections documentation. (<a href="https://github.com/jekyll/jekyll/issues/3638">#3638</a>)</li>
1683
- <li>Add the “warning” note label to excluding <code class="highlighter-rouge">vendor</code> in the CI docs page (<a href="https://github.com/jekyll/jekyll/issues/3623">#3623</a>)</li>
1684
- <li>Upgrade pieces of the Ugrading guide for Jekyll 3 (<a href="https://github.com/jekyll/jekyll/issues/3607">#3607</a>)</li>
1685
- <li>Showing how to access specific data items (<a href="https://github.com/jekyll/jekyll/issues/3468">#3468</a>)</li>
1686
- <li>Clarify pagination works from within HTML files (<a href="https://github.com/jekyll/jekyll/issues/3467">#3467</a>)</li>
1687
- <li>Add note to <code class="highlighter-rouge">excerpt_separator</code> documentation that it can be set globally (<a href="https://github.com/jekyll/jekyll/issues/3667">#3667</a>)</li>
1688
- <li>Fix some names on Troubleshooting page (<a href="https://github.com/jekyll/jekyll/issues/3683">#3683</a>)</li>
1689
- <li>Add <code class="highlighter-rouge">remote_file_content</code> tag plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3691">#3691</a>)</li>
1690
- <li>Update the Redcarpet version on the Configuration page. (<a href="https://github.com/jekyll/jekyll/issues/3743">#3743</a>)</li>
1691
- <li>Update the link in the welcome post to point to Jekyll Talk (<a href="https://github.com/jekyll/jekyll/issues/3745">#3745</a>)</li>
1692
- <li>Update link for navbars with data attributes tutorial (<a href="https://github.com/jekyll/jekyll/issues/3728">#3728</a>)</li>
1693
- <li>Add <code class="highlighter-rouge">jekyll-asciinema</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3750">#3750</a>)</li>
1694
- <li>Update pagination example to be agnostic to first pagination dir (<a href="https://github.com/jekyll/jekyll/issues/3763">#3763</a>)</li>
1695
- <li>Detailed instructions for rsync deployment method (<a href="https://github.com/jekyll/jekyll/issues/3848">#3848</a>)</li>
1696
- <li>Add Jekyll Portfolio Generator to list of plugins (<a href="https://github.com/jekyll/jekyll/issues/3883">#3883</a>)</li>
1697
- <li>Add <code class="highlighter-rouge">site.html_files</code> to variables docs (<a href="https://github.com/jekyll/jekyll/issues/3880">#3880</a>)</li>
1698
- <li>Add Static Publisher tool to list of deployment methods (<a href="https://github.com/jekyll/jekyll/issues/3865">#3865</a>)</li>
1699
- <li>Fix a few typos. (<a href="https://github.com/jekyll/jekyll/issues/3897">#3897</a>)</li>
1700
- <li>Add <code class="highlighter-rouge">jekyll-youtube</code> to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3931">#3931</a>)</li>
1701
- <li>Add Views Router plugin (<a href="https://github.com/jekyll/jekyll/issues/3950">#3950</a>)</li>
1702
- <li>Update install docs (Core dependencies, Windows reqs, etc) (<a href="https://github.com/jekyll/jekyll/issues/3769">#3769</a>)</li>
1703
- <li>Use Jekyll Feed for jekyllrb.com (<a href="https://github.com/jekyll/jekyll/issues/3736">#3736</a>)</li>
1704
- <li>Add jekyll-umlauts to plugins.md ($3966)</li>
1705
- <li>Troubleshooting: fix broken link, add other mac-specific info (<a href="https://github.com/jekyll/jekyll/issues/3968">#3968</a>)</li>
1706
- <li>Add a new site for learning purposes (<a href="https://github.com/jekyll/jekyll/issues/3917">#3917</a>)</li>
1707
- <li>Added documentation for Jekyll environment variables (<a href="https://github.com/jekyll/jekyll/issues/3989">#3989</a>)</li>
1708
- <li>Fix broken configuration documentation page (<a href="https://github.com/jekyll/jekyll/issues/3994">#3994</a>)</li>
1709
- <li>Add troubleshooting docs for installing on El Capitan (<a href="https://github.com/jekyll/jekyll/issues/3999">#3999</a>)</li>
1710
- <li>Add Lazy Tweet Embedding to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/4015">#4015</a>)</li>
1711
- <li>Add installation instructions for 2 of 3 options for plugins (<a href="https://github.com/jekyll/jekyll/issues/4013">#4013</a>)</li>
1712
- <li>Add alternative jekyll gem installation instructions (<a href="https://github.com/jekyll/jekyll/issues/4018">#4018</a>)</li>
1713
- <li>Fix a few typos and formatting problems. (<a href="https://github.com/jekyll/jekyll/issues/4022">#4022</a>)</li>
1714
- <li>Fix pretty permalink example (<a href="https://github.com/jekyll/jekyll/issues/4029">#4029</a>)</li>
1715
- <li>Note that <code class="highlighter-rouge">_config.yml</code> is not reloaded during regeneration (<a href="https://github.com/jekyll/jekyll/issues/4034">#4034</a>)</li>
1716
- <li>Apply code block figure syntax to blocks in CONTRIBUTING (<a href="https://github.com/jekyll/jekyll/issues/4046">#4046</a>)</li>
1717
- <li>Add jekyll-smartify to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3572">#3572</a>)</li>
1718
- </ul>
1719
-
1720
- <h2 id="v2-5-3">2.5.3 / 2014-12-22</h2>
1721
-
1722
- <h3 id="bug-fixes-v2-5-3">Bug Fixes</h3>
1723
-
1724
- <ul>
1725
- <li>When checking a Markdown extname, include position of the <code class="highlighter-rouge">.</code> (<a href="https://github.com/jekyll/jekyll/issues/3147">#3147</a>)</li>
1726
- <li>Fix <code class="highlighter-rouge">jsonify</code> Liquid filter handling of boolean values (<a href="https://github.com/jekyll/jekyll/issues/3154">#3154</a>)</li>
1727
- <li>Add comma to value of <code class="highlighter-rouge">viewport</code> meta tag (<a href="https://github.com/jekyll/jekyll/issues/3170">#3170</a>)</li>
1728
- <li>Set the link type for the RSS feed to <code class="highlighter-rouge">application/rss+xml</code> (<a href="https://github.com/jekyll/jekyll/issues/3176">#3176</a>)</li>
1729
- <li>Refactor <code class="highlighter-rouge">#as_liquid</code> (<a href="https://github.com/jekyll/jekyll/issues/3158">#3158</a>)</li>
1730
- </ul>
1731
-
1732
- <h3 id="development-fixes-v2-5-3">Development Fixes</h3>
1733
-
1734
- <ul>
1735
- <li>Exclude built-in bundles from being added to coverage report (<a href="https://github.com/jekyll/jekyll/issues/3180">#3180</a>)</li>
1736
- </ul>
1737
-
1738
- <h3 id="site-enhancements-v2-5-3">Site Enhancements</h3>
1739
-
1740
- <ul>
1741
- <li>Add <code class="highlighter-rouge">[@alfredxing](https://github.com/alfredxing)</code> to the <code class="highlighter-rouge">[@jekyll](https://github.com/jekyll)/core</code> team. <img class="emoji" title=":tada:" alt=":tada:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f389.png" height="20" width="20" align="absmiddle"> (<a href="https://github.com/jekyll/jekyll/issues/3218">#3218</a>)</li>
1742
- <li>Document the <code class="highlighter-rouge">-q</code> option for the <code class="highlighter-rouge">build</code> and <code class="highlighter-rouge">serve</code> commands (<a href="https://github.com/jekyll/jekyll/issues/3149">#3149</a>)</li>
1743
- <li>Fix some minor typos/flow fixes in documentation website content (<a href="https://github.com/jekyll/jekyll/issues/3165">#3165</a>)</li>
1744
- <li>Add <code class="highlighter-rouge">keep_files</code> to configuration documentation (<a href="https://github.com/jekyll/jekyll/issues/3162">#3162</a>)</li>
1745
- <li>Repeat warning about cleaning of the <code class="highlighter-rouge">destination</code> directory (<a href="https://github.com/jekyll/jekyll/issues/3161">#3161</a>)</li>
1746
- <li>Add jekyll-500px-embed to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3163">#3163</a>)</li>
1747
- <li>Simplified platform detection in Gemfile example for Windows (<a href="https://github.com/jekyll/jekyll/issues/3177">#3177</a>)</li>
1748
- <li>Add the <code class="highlighter-rouge">jekyll-jalali</code> plugin added to the list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/3198">#3198</a>)</li>
1749
- <li>Add Table of Contents to Troubleshooting page (<a href="https://github.com/jekyll/jekyll/issues/3196">#3196</a>)</li>
1750
- <li>Add <code class="highlighter-rouge">inline_highlight</code> plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3212">#3212</a>)</li>
1751
- <li>Add <code class="highlighter-rouge">jekyll-mermaid</code> plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3222">#3222</a>)</li>
1752
- </ul>
1753
-
1754
- <h2 id="v2-5-2">2.5.2 / 2014-11-17</h2>
1755
-
1756
- <h3 id="minor-enhancements-v2-5-2">Minor Enhancements</h3>
1757
-
1758
- <ul>
1759
- <li>
1760
- <code class="highlighter-rouge">post_url</code> should match <code class="highlighter-rouge">post.name</code> instead of slugs and dates (<a href="https://github.com/jekyll/jekyll/issues/3058">#3058</a>)</li>
1761
- </ul>
1762
-
1763
- <h3 id="bug-fixes-v2-5-2">Bug Fixes</h3>
1764
-
1765
- <ul>
1766
- <li>Fix bundle require for <code class="highlighter-rouge">:jekyll_plugins</code> (<a href="https://github.com/jekyll/jekyll/issues/3119">#3119</a>)</li>
1767
- <li>Remove duplicate regexp phrase: <code class="highlighter-rouge">^\A</code> (<a href="https://github.com/jekyll/jekyll/issues/3089">#3089</a>)</li>
1768
- <li>Remove duplicate <code class="highlighter-rouge">Conversion error:</code> message in <code class="highlighter-rouge">Convertible</code> (<a href="https://github.com/jekyll/jekyll/issues/3088">#3088</a>)</li>
1769
- <li>Print full conversion error message in <code class="highlighter-rouge">Renderer#convert</code> (<a href="https://github.com/jekyll/jekyll/issues/3090">#3090</a>)</li>
1770
- </ul>
1771
-
1772
- <h3 id="site-enhancements-v2-5-2">Site Enhancements</h3>
1773
-
1774
- <ul>
1775
- <li>Change variable names in Google Analytics script (<a href="https://github.com/jekyll/jekyll/issues/3093">#3093</a>)</li>
1776
- <li>Mention CSV files in the docs for data files (<a href="https://github.com/jekyll/jekyll/issues/3101">#3101</a>)</li>
1777
- <li>Add trailing slash to <code class="highlighter-rouge">paginate_path</code> example. (<a href="https://github.com/jekyll/jekyll/issues/3091">#3091</a>)</li>
1778
- <li>Get rid of noifniof (<code class="highlighter-rouge">excerpt_separator</code>) (<a href="https://github.com/jekyll/jekyll/issues/3094">#3094</a>)</li>
1779
- <li>Sass improvements, around nesting mostly. (<a href="https://github.com/jekyll/jekyll/issues/3123">#3123</a>)</li>
1780
- <li>Add webmentions.io plugin to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3127">#3127</a>)</li>
1781
- <li>Add Sass mixins and use them. (<a href="https://github.com/jekyll/jekyll/issues/2904">#2904</a>)</li>
1782
- <li>Slightly compress jekyll-sticker.jpg. (<a href="https://github.com/jekyll/jekyll/issues/3133">#3133</a>)</li>
1783
- <li>Update gridism and separate out related but custom styles. (<a href="https://github.com/jekyll/jekyll/issues/3132">#3132</a>)</li>
1784
- <li>Add remote-include plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/3136">#3136</a>)</li>
1785
- </ul>
1786
-
1787
- <h2 id="v2-5-1">2.5.1 / 2014-11-09</h2>
1788
-
1789
- <h3 id="bug-fixes-v2-5-1">Bug Fixes</h3>
1790
-
1791
- <ul>
1792
- <li>Fix path sanitation bug related to Windows drive names (<a href="https://github.com/jekyll/jekyll/issues/3077">#3077</a>)</li>
1793
- </ul>
1794
-
1795
- <h3 id="development-fixes-v2-5-1">Development Fixes</h3>
1796
-
1797
- <ul>
1798
- <li>Add development time dependencies on minitest and test-unit to gemspec for cygwin (<a href="https://github.com/jekyll/jekyll/issues/3064">#3064</a>)</li>
1799
- <li>Use Travis’s built-in caching. (<a href="https://github.com/jekyll/jekyll/issues/3075">#3075</a>)</li>
1800
- </ul>
1801
-
1802
- <h2 id="v2-5-0">2.5.0 / 2014-11-06</h2>
1803
-
1804
- <h3 id="minor-enhancements-v2-5-0">Minor Enhancements</h3>
1805
-
1806
- <ul>
1807
- <li>Require gems in <code class="highlighter-rouge">:jekyll_plugins</code> Gemfile group unless <code class="highlighter-rouge">JEKYLL_NO_BUNDLER_REQUIRE</code> is specified in the environment. (<a href="https://github.com/jekyll/jekyll/issues/2865">#2865</a>)</li>
1808
- <li>Centralize path sanitation in the <code class="highlighter-rouge">Site</code> object (<a href="https://github.com/jekyll/jekyll/issues/2882">#2882</a>)</li>
1809
- <li>Allow placeholders in permalinks (<a href="https://github.com/jekyll/jekyll/issues/3031">#3031</a>)</li>
1810
- <li>Allow users to specify the log level via <code class="highlighter-rouge">JEKYLL_LOG_LEVEL</code>. (<a href="https://github.com/jekyll/jekyll/issues/3067">#3067</a>)</li>
1811
- <li>Fancy Indexing with WEBrick (<a href="https://github.com/jekyll/jekyll/issues/3018">#3018</a>)</li>
1812
- <li>Allow Enumerables to be used with <code class="highlighter-rouge">where</code> filter. (<a href="https://github.com/jekyll/jekyll/issues/2986">#2986</a>)</li>
1813
- <li>Meta descriptions in the site template now use <code class="highlighter-rouge">page.excerpt</code> if it’s available (<a href="https://github.com/jekyll/jekyll/issues/2964">#2964</a>)</li>
1814
- <li>Change indentation in <code class="highlighter-rouge">head.html</code> of site template to 2 spaces from 4 (<a href="https://github.com/jekyll/jekyll/issues/2973">#2973</a>)</li>
1815
- <li>Use a <code class="highlighter-rouge">$content-width</code> variable instead of a fixed value in the site template CSS (<a href="https://github.com/jekyll/jekyll/issues/2972">#2972</a>)</li>
1816
- <li>Strip newlines in site template <code class="highlighter-rouge">&lt;meta&gt;</code> description. (<a href="https://github.com/jekyll/jekyll/issues/2982">#2982</a>)</li>
1817
- <li>Add link to atom feed in <code class="highlighter-rouge">head</code> of site template files (<a href="https://github.com/jekyll/jekyll/issues/2996">#2996</a>)</li>
1818
- <li>Performance optimizations (<a href="https://github.com/jekyll/jekyll/issues/2994">#2994</a>)</li>
1819
- <li>Use <code class="highlighter-rouge">Hash#each_key</code> instead of <code class="highlighter-rouge">Hash#keys.each</code> to speed up iteration over hash keys. (<a href="https://github.com/jekyll/jekyll/issues/3017">#3017</a>)</li>
1820
- <li>Further minor performance enhancements. (<a href="https://github.com/jekyll/jekyll/issues/3022">#3022</a>)</li>
1821
- <li>Add ‘b’ and ‘s’ aliases for build and serve, respectively (<a href="https://github.com/jekyll/jekyll/issues/3065">#3065</a>)</li>
1822
- </ul>
1823
-
1824
- <h3 id="bug-fixes-v2-5-0">Bug Fixes</h3>
1825
-
1826
- <ul>
1827
- <li>Fix Rouge’s RedCarpet plugin interface integration (<a href="https://github.com/jekyll/jekyll/issues/2951">#2951</a>)</li>
1828
- <li>Remove <code class="highlighter-rouge">--watch</code> from the site template blog post since it defaults to watching in in 2.4.0 (<a href="https://github.com/jekyll/jekyll/issues/2922">#2922</a>)</li>
1829
- <li>Fix code for media query mixin in site template (<a href="https://github.com/jekyll/jekyll/issues/2946">#2946</a>)</li>
1830
- <li>Allow post URLs to have <code class="highlighter-rouge">.htm</code> extensions (<a href="https://github.com/jekyll/jekyll/issues/2925">#2925</a>)</li>
1831
- <li>
1832
- <code class="highlighter-rouge">Utils.slugify</code>: Don’t create new objects when gsubbing (<a href="https://github.com/jekyll/jekyll/issues/2997">#2997</a>)</li>
1833
- <li>The jsonify filter should deep-convert to Liquid when given an Array. (<a href="https://github.com/jekyll/jekyll/issues/3032">#3032</a>)</li>
1834
- <li>Apply <code class="highlighter-rouge">jsonify</code> filter to Hashes deeply and effectively (<a href="https://github.com/jekyll/jekyll/issues/3063">#3063</a>)</li>
1835
- <li>Use <code class="highlighter-rouge">127.0.0.1</code> as default host instead of <code class="highlighter-rouge">0.0.0.0</code> (<a href="https://github.com/jekyll/jekyll/issues/3053">#3053</a>)</li>
1836
- <li>In the case that a Gemfile does not exist, ensure Jekyll doesn’t fail on requiring the Gemfile group (<a href="https://github.com/jekyll/jekyll/issues/3066">#3066</a>)</li>
1837
- </ul>
1838
-
1839
- <h3 id="development-fixes-v2-5-0">Development Fixes</h3>
1840
-
1841
- <ul>
1842
- <li>Fix a typo in the doc block for <code class="highlighter-rouge">Jekyll::URL.escape_path</code> (<a href="https://github.com/jekyll/jekyll/issues/3052">#3052</a>)</li>
1843
- <li>Add integration test for <code class="highlighter-rouge">jekyll new --blank</code> in TestUnit (<a href="https://github.com/jekyll/jekyll/issues/2913">#2913</a>)</li>
1844
- <li>Add unit test for <code class="highlighter-rouge">jekyll new --force</code> logic (<a href="https://github.com/jekyll/jekyll/issues/2929">#2929</a>)</li>
1845
- <li>Update outdated comment for <code class="highlighter-rouge">Convertible#transform</code> (<a href="https://github.com/jekyll/jekyll/issues/2957">#2957</a>)</li>
1846
- <li>Add Hakiri badge to README. (<a href="https://github.com/jekyll/jekyll/issues/2953">#2953</a>)</li>
1847
- <li>Add some simple benchmarking tools. (<a href="https://github.com/jekyll/jekyll/issues/2993">#2993</a>)</li>
1848
- </ul>
1849
-
1850
- <h3 id="site-enhancements-v2-5-0">Site Enhancements</h3>
1851
-
1852
- <ul>
1853
- <li>
1854
- <code class="highlighter-rouge">NOKOGIRI_USE_SYSTEM_LIBRARIES=true</code> <strong>decreases</strong> installation time. (<a href="https://github.com/jekyll/jekyll/issues/3040">#3040</a>)</li>
1855
- <li>Add FormKeep to resources as Jekyll form backend (<a href="https://github.com/jekyll/jekyll/issues/3010">#3010</a>)</li>
1856
- <li>Fixing a mistake in the name of the new Liquid tag (<a href="https://github.com/jekyll/jekyll/issues/2969">#2969</a>)</li>
1857
- <li>Update Font Awesome to v4.2.0. (<a href="https://github.com/jekyll/jekyll/issues/2898">#2898</a>)</li>
1858
- <li>Fix link to <a href="https://github.com/jekyll/jekyll/issues/2895">#2895</a> in 2.4.0 release post. (<a href="https://github.com/jekyll/jekyll/issues/2899">#2899</a>)</li>
1859
- <li>Add Big Footnotes for Kramdown plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2916">#2916</a>)</li>
1860
- <li>Remove warning regarding GHP use of singular types for front matter defaults (<a href="https://github.com/jekyll/jekyll/issues/2919">#2919</a>)</li>
1861
- <li>Fix quote character typo in site documentation for templates (<a href="https://github.com/jekyll/jekyll/issues/2917">#2917</a>)</li>
1862
- <li>Point Liquid links to Liquid’s GitHub wiki (<a href="https://github.com/jekyll/jekyll/issues/2887">#2887</a>)</li>
1863
- <li>Add HTTP Basic Auth (.htaccess) plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2931">#2931</a>)</li>
1864
- <li>(Minor) Grammar &amp; <code class="highlighter-rouge">_config.yml</code> filename fixes (<a href="https://github.com/jekyll/jekyll/issues/2911">#2911</a>)</li>
1865
- <li>Added <code class="highlighter-rouge">mathml.rb</code> to the list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/2937">#2937</a>)</li>
1866
- <li>Add <code class="highlighter-rouge">--force_polling</code> to the list of configuration options (<a href="https://github.com/jekyll/jekyll/issues/2943">#2943</a>)</li>
1867
- <li>Escape unicode characters in site CSS (<a href="https://github.com/jekyll/jekyll/issues/2906">#2906</a>)</li>
1868
- <li>Add note about using the github-pages gem via pages.github.com/versions.json (<a href="https://github.com/jekyll/jekyll/issues/2939">#2939</a>)</li>
1869
- <li>Update usage documentation to reflect 2.4 auto-enabling of <code class="highlighter-rouge">--watch</code>. (<a href="https://github.com/jekyll/jekyll/issues/2954">#2954</a>)</li>
1870
- <li>Add <code class="highlighter-rouge">--skip-initial-build</code> to configuration docs (<a href="https://github.com/jekyll/jekyll/issues/2949">#2949</a>)</li>
1871
- <li>Fix a minor typo in Templates docs page (<a href="https://github.com/jekyll/jekyll/issues/2959">#2959</a>)</li>
1872
- <li>Add a ditaa-ditaa plugin under Other section on the Plugins page (<a href="https://github.com/jekyll/jekyll/issues/2967">#2967</a>)</li>
1873
- <li>Add <code class="highlighter-rouge">build/serve -V</code> option to configuration documentation (<a href="https://github.com/jekyll/jekyll/issues/2948">#2948</a>)</li>
1874
- <li>Add ‘Jekyll Twitter Plugin’ to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2979">#2979</a>)</li>
1875
- <li>Docs: Update normalize.css to v3.0.2. (<a href="https://github.com/jekyll/jekyll/issues/2981">#2981</a>)</li>
1876
- <li>Fix typo in Continuous Integration documentation (<a href="https://github.com/jekyll/jekyll/issues/2984">#2984</a>)</li>
1877
- <li>Clarify behavior of <code class="highlighter-rouge">:categories</code> in permalinks (<a href="https://github.com/jekyll/jekyll/issues/3011">#3011</a>)</li>
1878
- </ul>
1879
-
1880
- <h2 id="v2-4-0">2.4.0 / 2014-09-09</h2>
1881
-
1882
- <h3 id="minor-enhancements-v2-4-0">Minor Enhancements</h3>
1883
-
1884
- <ul>
1885
- <li>Support a new <code class="highlighter-rouge">relative_include</code> tag (<a href="https://github.com/jekyll/jekyll/issues/2870">#2870</a>)</li>
1886
- <li>Auto-enable watch on ‘serve’ (<a href="https://github.com/jekyll/jekyll/issues/2858">#2858</a>)</li>
1887
- <li>Render Liquid in CoffeeScript files (<a href="https://github.com/jekyll/jekyll/issues/2830">#2830</a>)</li>
1888
- <li>Array Liquid filters: <code class="highlighter-rouge">push</code>, <code class="highlighter-rouge">pop</code>, <code class="highlighter-rouge">unshift</code>, <code class="highlighter-rouge">shift</code> (<a href="https://github.com/jekyll/jekyll/issues/2895">#2895</a>)</li>
1889
- <li>Add <code class="highlighter-rouge">:title</code> to collection URL template fillers (<a href="https://github.com/jekyll/jekyll/issues/2864">#2864</a>)</li>
1890
- <li>Add support for CSV files in the <code class="highlighter-rouge">_data</code> directory (<a href="https://github.com/jekyll/jekyll/issues/2761">#2761</a>)</li>
1891
- <li>Add the <code class="highlighter-rouge">name</code> variable to collection permalinks (<a href="https://github.com/jekyll/jekyll/issues/2799">#2799</a>)</li>
1892
- <li>Add <code class="highlighter-rouge">inspect</code> liquid filter. (<a href="https://github.com/jekyll/jekyll/issues/2867">#2867</a>)</li>
1893
- <li>Add a <code class="highlighter-rouge">slugify</code> Liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2880">#2880</a>)</li>
1894
- </ul>
1895
-
1896
- <h3 id="bug-fixes-v2-4-0">Bug Fixes</h3>
1897
-
1898
- <ul>
1899
- <li>Use <code class="highlighter-rouge">Jekyll.sanitized_path</code> when adding static files to Collections (<a href="https://github.com/jekyll/jekyll/issues/2849">#2849</a>)</li>
1900
- <li>Fix encoding of <code class="highlighter-rouge">main.scss</code> in site template (<a href="https://github.com/jekyll/jekyll/issues/2771">#2771</a>)</li>
1901
- <li>Fix orientation bugs in default site template (<a href="https://github.com/jekyll/jekyll/issues/2862">#2862</a>)</li>
1902
- </ul>
1903
-
1904
- <h3 id="development-fixes-v2-4-0">Development Fixes</h3>
1905
-
1906
- <ul>
1907
- <li>Update simplecov gem to 0.9 (<a href="https://github.com/jekyll/jekyll/issues/2748">#2748</a>)</li>
1908
- <li>Remove <code class="highlighter-rouge">docs/</code> dir (<a href="https://github.com/jekyll/jekyll/issues/2768">#2768</a>)</li>
1909
- <li>add class <code class="highlighter-rouge">&lt;&lt; self</code> idiom to <code class="highlighter-rouge">New</code> command (<a href="https://github.com/jekyll/jekyll/issues/2817">#2817</a>)</li>
1910
- <li>Allow Travis to ‘parallelize’ our tests (<a href="https://github.com/jekyll/jekyll/issues/2859">#2859</a>)</li>
1911
- <li>Fix test for Liquid rendering in Sass (<a href="https://github.com/jekyll/jekyll/issues/2856">#2856</a>)</li>
1912
- <li>Fixing “vertycal” typo in site template’s <code class="highlighter-rouge">_base.scss</code> (<a href="https://github.com/jekyll/jekyll/issues/2889">#2889</a>)</li>
1913
- </ul>
1914
-
1915
- <h3 id="site-enhancements-v2-4-0">Site Enhancements</h3>
1916
-
1917
- <ul>
1918
- <li>Document the <code class="highlighter-rouge">name</code> variable for collection permalinks (<a href="https://github.com/jekyll/jekyll/issues/2829">#2829</a>)</li>
1919
- <li>Adds info about installing jekyll in current dir (<a href="https://github.com/jekyll/jekyll/issues/2839">#2839</a>)</li>
1920
- <li>Remove deprecated <code class="highlighter-rouge">jekyll-projectlist</code> plugin from list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2742">#2742</a>)</li>
1921
- <li>Remove tag plugins that are built in to Jekyll (<a href="https://github.com/jekyll/jekyll/issues/2751">#2751</a>)</li>
1922
- <li>Add <code class="highlighter-rouge">markdown-writer</code> package for Atom Editor to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2763">#2763</a>)</li>
1923
- <li>Fix typo in site documentation for collections (<a href="https://github.com/jekyll/jekyll/issues/2764">#2764</a>)</li>
1924
- <li>Fix minor typo on plugins docs page (<a href="https://github.com/jekyll/jekyll/issues/2765">#2765</a>)</li>
1925
- <li>Replace markdown with HTML in <code class="highlighter-rouge">sass_dir</code> note on assets page (<a href="https://github.com/jekyll/jekyll/issues/2791">#2791</a>)</li>
1926
- <li>Fixed “bellow” typo in datafiles docs (<a href="https://github.com/jekyll/jekyll/issues/2879">#2879</a>)</li>
1927
- <li>Fix code/markdown issue in documentation for variables (<a href="https://github.com/jekyll/jekyll/issues/2877">#2877</a>)</li>
1928
- <li>Remove Good Include third-party plugin from plugins page (<a href="https://github.com/jekyll/jekyll/issues/2881">#2881</a>)</li>
1929
- <li>Add some more docs on <code class="highlighter-rouge">include_relative</code> (<a href="https://github.com/jekyll/jekyll/issues/2884">#2884</a>)</li>
1930
- </ul>
1931
-
1932
- <h2 id="v2-3-0">2.3.0 / 2014-08-10</h2>
1933
-
1934
- <h3 id="minor-enhancements-v2-3-0">Minor Enhancements</h3>
1935
-
1936
- <ul>
1937
- <li>Allow Convertibles to be converted by &gt;= 1 converters (<a href="https://github.com/jekyll/jekyll/issues/2704">#2704</a>)</li>
1938
- <li>Allow Sass files to be rendered in Liquid, but never place them in layouts. (<a href="https://github.com/jekyll/jekyll/issues/2733">#2733</a>)</li>
1939
- <li>Add <code class="highlighter-rouge">jekyll help</code> command (<a href="https://github.com/jekyll/jekyll/issues/2707">#2707</a>)</li>
1940
- <li>Use <code class="highlighter-rouge">.scss</code> for <code class="highlighter-rouge">site_template</code> styles. (<a href="https://github.com/jekyll/jekyll/issues/2667">#2667</a>)</li>
1941
- <li>Don’t require the <code class="highlighter-rouge">scope</code> key in front matter defaults (<a href="https://github.com/jekyll/jekyll/issues/2659">#2659</a>)</li>
1942
- <li>No longer set <code class="highlighter-rouge">permalink: pretty</code> in the <code class="highlighter-rouge">_config.yml</code> for the site template (<a href="https://github.com/jekyll/jekyll/issues/2680">#2680</a>)</li>
1943
- <li>Rework site template to utilize Sass (<a href="https://github.com/jekyll/jekyll/issues/2687">#2687</a>)</li>
1944
- <li>Notify the user when auto-regeneration is disabled. (<a href="https://github.com/jekyll/jekyll/issues/2696">#2696</a>)</li>
1945
- <li>Allow partial variables in include tag filename argument (<a href="https://github.com/jekyll/jekyll/issues/2693">#2693</a>)</li>
1946
- <li>Move instances of <code class="highlighter-rouge">Time.parse</code> into a Utils method (<a href="https://github.com/jekyll/jekyll/issues/2682">#2682</a>)</li>
1947
- <li>Ignore subfolders in the <code class="highlighter-rouge">_posts</code> folder (<a href="https://github.com/jekyll/jekyll/issues/2705">#2705</a>) REVERTS (<a href="https://github.com/jekyll/jekyll/issues/2633">#2633</a>)</li>
1948
- <li>Front Matter default types should always be pluralized (<a href="https://github.com/jekyll/jekyll/issues/2732">#2732</a>)</li>
1949
- <li>Read in static files into <code class="highlighter-rouge">collection.files</code> as <code class="highlighter-rouge">StaticFile</code>s (<a href="https://github.com/jekyll/jekyll/issues/2737">#2737</a>)</li>
1950
- <li>Add <code class="highlighter-rouge">sassify</code> and <code class="highlighter-rouge">scssify</code> Liquid filters (<a href="https://github.com/jekyll/jekyll/issues/2739">#2739</a>)</li>
1951
- <li>Replace <code class="highlighter-rouge">classifier</code> gem with <code class="highlighter-rouge">classifier-reborn</code> (<a href="https://github.com/jekyll/jekyll/issues/2721">#2721</a>)</li>
1952
- </ul>
1953
-
1954
- <h3 id="bug-fixes-v2-3-0">Bug Fixes</h3>
1955
-
1956
- <ul>
1957
- <li>Use only the last extname when multiple converters exist (<a href="https://github.com/jekyll/jekyll/issues/2722">#2722</a>)</li>
1958
- <li>Call <code class="highlighter-rouge">#to_liquid</code> before calling <code class="highlighter-rouge">#to_json</code> in jsonify filter (<a href="https://github.com/jekyll/jekyll/issues/2729">#2729</a>)</li>
1959
- <li>Use non padded config in <code class="highlighter-rouge">strftime</code> to avoid parse string twice (<a href="https://github.com/jekyll/jekyll/issues/2673">#2673</a>)</li>
1960
- <li>Replace deprecated Ruby methods with undeprecated ones (<a href="https://github.com/jekyll/jekyll/issues/2664">#2664</a>)</li>
1961
- <li>Catch errors when parsing Post <code class="highlighter-rouge">date</code> front matter value &amp; produce nice error message (<a href="https://github.com/jekyll/jekyll/issues/2649">#2649</a>)</li>
1962
- <li>Allow static files in Collections (<a href="https://github.com/jekyll/jekyll/issues/2615">#2615</a>)</li>
1963
- <li>Fixed typo in <code class="highlighter-rouge">Deprecator#gracefully_require</code> error message (<a href="https://github.com/jekyll/jekyll/issues/2694">#2694</a>)</li>
1964
- <li>Remove preemptive loading of the ‘classifier’ gem. (<a href="https://github.com/jekyll/jekyll/issues/2697">#2697</a>)</li>
1965
- <li>Use case-insensitive checking for the file extensions when loading config files (<a href="https://github.com/jekyll/jekyll/issues/2718">#2718</a>)</li>
1966
- <li>When Reading Documents, Respect <code class="highlighter-rouge">encoding</code> Option (<a href="https://github.com/jekyll/jekyll/issues/2720">#2720</a>)</li>
1967
- <li>Refactor based on jekyll-watch clean-up. (<a href="https://github.com/jekyll/jekyll/issues/2716">#2716</a>)</li>
1968
- <li>
1969
- <code class="highlighter-rouge">Document#to_s</code> should produce just the content of the document (<a href="https://github.com/jekyll/jekyll/issues/2731">#2731</a>)</li>
1970
- </ul>
1971
-
1972
- <h3 id="development-fixes-v2-3-0">Development Fixes</h3>
1973
-
1974
- <ul>
1975
- <li>Only include lib files in the gem (<a href="https://github.com/jekyll/jekyll/issues/2671">#2671</a>)</li>
1976
- <li>Fix <code class="highlighter-rouge">git diff</code> command in <code class="highlighter-rouge">proof</code> script (<a href="https://github.com/jekyll/jekyll/issues/2672">#2672</a>)</li>
1977
- <li>Make default rake task a multitask so tests run in parallel (<a href="https://github.com/jekyll/jekyll/issues/2735">#2735</a>)</li>
1978
- </ul>
1979
-
1980
- <h3 id="site-enhancements-v2-3-0">Site Enhancements</h3>
1981
-
1982
- <ul>
1983
- <li>Use Sass and a Docs Collection (<a href="https://github.com/jekyll/jekyll/issues/2651">#2651</a>)</li>
1984
- <li>Add <code class="highlighter-rouge">latest_version.txt</code> file to the site (<a href="https://github.com/jekyll/jekyll/issues/2740">#2740</a>)</li>
1985
- <li>Be more ambiguous about <code class="highlighter-rouge">page.content</code>. But more transparent. (<a href="https://github.com/jekyll/jekyll/issues/2522">#2522</a>)</li>
1986
- <li>Streamlining front matter wording (instead of front-matter/frontmatter) (<a href="https://github.com/jekyll/jekyll/issues/2674">#2674</a>)</li>
1987
- <li>Add note that source directory cannot be modified in GitHub Pages (<a href="https://github.com/jekyll/jekyll/issues/2669">#2669</a>)</li>
1988
- <li>Fix links from <a href="https://github.com/jekyll/jekyll/issues/2669">#2669</a> to be actual HTML. Whoops. (<a href="https://github.com/jekyll/jekyll/issues/2679">#2679</a>)</li>
1989
- <li>Add link to <code class="highlighter-rouge">jekyll-slim</code> in list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2689">#2689</a>)</li>
1990
- <li>Add Barry Clark’s Smashing Magazine tutorial to resources page (<a href="https://github.com/jekyll/jekyll/issues/2688">#2688</a>)</li>
1991
- <li>Reorganize and update default configuration settings (<a href="https://github.com/jekyll/jekyll/issues/2456">#2456</a>)</li>
1992
- <li>Fixing indentation in the configuration docs about Redcarpet exts (<a href="https://github.com/jekyll/jekyll/issues/2717">#2717</a>)</li>
1993
- <li>Use <code class="highlighter-rouge">null</code> in YAML instead of <code class="highlighter-rouge">nil</code> in default config list (<a href="https://github.com/jekyll/jekyll/issues/2719">#2719</a>)</li>
1994
- <li>Fix typo in Continuous Integration docs (<a href="https://github.com/jekyll/jekyll/issues/2708">#2708</a>)</li>
1995
- </ul>
1996
-
1997
- <h2 id="v2-2-0">2.2.0 / 2014-07-29</h2>
1998
-
1999
- <h3 id="minor-enhancements-v2-2-0">Minor Enhancements</h3>
2000
-
2001
- <ul>
2002
- <li>Throw a warning if the specified layout does not exist (<a href="https://github.com/jekyll/jekyll/issues/2620">#2620</a>)</li>
2003
- <li>Whitelist Pygments options in safe mode (<a href="https://github.com/jekyll/jekyll/issues/2642">#2642</a>)</li>
2004
- </ul>
2005
-
2006
- <h3 id="bug-fixes-v2-2-0">Bug Fixes</h3>
2007
-
2008
- <ul>
2009
- <li>Remove unnecessary <code class="highlighter-rouge">Jekyll::Tags::IncludeTag#blank?</code> method (<a href="https://github.com/jekyll/jekyll/issues/2625">#2625</a>)</li>
2010
- <li>Categories in the path are ignored (<a href="https://github.com/jekyll/jekyll/issues/2633">#2633</a>)</li>
2011
- </ul>
2012
-
2013
- <h3 id="development-fixes-v2-2-0">Development Fixes</h3>
2014
-
2015
- <ul>
2016
- <li>Refactoring Errors &amp; Requires of Third-Party stuff (<a href="https://github.com/jekyll/jekyll/issues/2591">#2591</a>)</li>
2017
- <li>Add further tests for categories (<a href="https://github.com/jekyll/jekyll/issues/2584">#2584</a>)</li>
2018
- <li>Proof site with html-proofer on change (<a href="https://github.com/jekyll/jekyll/issues/2605">#2605</a>)</li>
2019
- <li>Fix up bug in <a href="https://github.com/jekyll/jekyll/issues/2605">#2605</a> which caused proofing the site not to function (<a href="https://github.com/jekyll/jekyll/issues/2608">#2608</a>)</li>
2020
- <li>Use <code class="highlighter-rouge">bundle exec</code> in <code class="highlighter-rouge">script/proof</code> (<a href="https://github.com/jekyll/jekyll/issues/2610">#2610</a>)</li>
2021
- </ul>
2022
-
2023
- <h3 id="site-enhancements-v2-2-0">Site Enhancements</h3>
2024
-
2025
- <ul>
2026
- <li>Update Kramdown urls (<a href="https://github.com/jekyll/jekyll/issues/2588">#2588</a>)</li>
2027
- <li>Add <code class="highlighter-rouge">Jekyll::AutolinkEmail</code> and <code class="highlighter-rouge">Jekyll::GitMetadata</code> to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2596">#2596</a>)</li>
2028
- <li>Fix a bunch of broken links in the site (<a href="https://github.com/jekyll/jekyll/issues/2601">#2601</a>)</li>
2029
- <li>Replace dead links with working links (<a href="https://github.com/jekyll/jekyll/issues/2611">#2611</a>)</li>
2030
- <li>Add jekyll-hook to deployment methods (<a href="https://github.com/jekyll/jekyll/issues/2617">#2617</a>)</li>
2031
- <li>Added kramdown-with-pygments plugin to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2623">#2623</a>)</li>
2032
- <li>Update outdated “Extras” page and remove duplicate documentation (<a href="https://github.com/jekyll/jekyll/issues/2622">#2622</a>)</li>
2033
- <li>Add co2 plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2639">#2639</a>)</li>
2034
- <li>Attempt to clarify the way Sass imports happen (<a href="https://github.com/jekyll/jekyll/issues/2642">#2642</a>)</li>
2035
- </ul>
2036
-
2037
- <h2 id="v2-1-1">2.1.1 / 2014-07-01</h2>
2038
-
2039
- <h3 id="bug-fixes-v2-1-1">Bug Fixes</h3>
2040
-
2041
- <ul>
2042
- <li>Patch read vulnerabilities for data &amp; confirm none for layouts (<a href="https://github.com/jekyll/jekyll/issues/2563">#2563</a>)</li>
2043
- <li>Update Maruku dependency to allow use of the latest version (<a href="https://github.com/jekyll/jekyll/issues/2576">#2576</a>)</li>
2044
- <li>Remove conditional assignment from document URL to prevent stale urls (<a href="https://github.com/jekyll/jekyll/issues/2575">#2575</a>)</li>
2045
- </ul>
2046
-
2047
- <h3 id="site-enhancements-v2-1-1">Site Enhancements</h3>
2048
-
2049
- <ul>
2050
- <li>Add vertical margin to <code class="highlighter-rouge">highlight</code> to separate code blocks (<a href="https://github.com/jekyll/jekyll/issues/2558">#2558</a>)</li>
2051
- <li>Add <code class="highlighter-rouge">html_pages</code> to Variables docs (<a href="https://github.com/jekyll/jekyll/issues/2567">#2567</a>)</li>
2052
- <li>Fixed broken link to Permalinks page (<a href="https://github.com/jekyll/jekyll/issues/2572">#2572</a>)</li>
2053
- <li>Update link to Windows installation guide (<a href="https://github.com/jekyll/jekyll/issues/2578">#2578</a>)</li>
2054
- </ul>
2055
-
2056
- <h2 id="v2-1-0">2.1.0 / 2014-06-28</h2>
2057
-
2058
- <h3 id="minor-enhancements-v2-1-0">Minor Enhancements</h3>
2059
-
2060
- <ul>
2061
- <li>Bump to the latest Liquid version, 2.6.1 (<a href="https://github.com/jekyll/jekyll/issues/2495">#2495</a>)</li>
2062
- <li>Add support for JSON files in the <code class="highlighter-rouge">_data</code> directory (<a href="https://github.com/jekyll/jekyll/issues/2369">#2369</a>)</li>
2063
- <li>Allow subclasses to override <code class="highlighter-rouge">EXCERPT_ATTRIBUTES_FOR_LIQUID</code> (<a href="https://github.com/jekyll/jekyll/issues/2408">#2408</a>)</li>
2064
- <li>Add <code class="highlighter-rouge">Jekyll.env</code> and <code class="highlighter-rouge">jekyll.environment</code> (the Liquid var) (<a href="https://github.com/jekyll/jekyll/issues/2417">#2417</a>)</li>
2065
- <li>Use <code class="highlighter-rouge">_config.yaml</code> or <code class="highlighter-rouge">_config.yml</code> (<code class="highlighter-rouge">.yml</code> takes precedence) (<a href="https://github.com/jekyll/jekyll/issues/2406">#2406</a>)</li>
2066
- <li>Override collection url template (<a href="https://github.com/jekyll/jekyll/issues/2418">#2418</a>)</li>
2067
- <li>Allow subdirectories in <code class="highlighter-rouge">_data</code> (<a href="https://github.com/jekyll/jekyll/issues/2395">#2395</a>)</li>
2068
- <li>Extract Pagination Generator into gem: <code class="highlighter-rouge">jekyll-paginate</code> (<a href="https://github.com/jekyll/jekyll/issues/2455">#2455</a>)</li>
2069
- <li>Utilize <code class="highlighter-rouge">date_to_rfc822</code> filter in site template (<a href="https://github.com/jekyll/jekyll/issues/2437">#2437</a>)</li>
2070
- <li>Add categories, last build datetime, and generator to site template feed (<a href="https://github.com/jekyll/jekyll/issues/2438">#2438</a>)</li>
2071
- <li>Configurable, replaceable Logger-compliant logger (<a href="https://github.com/jekyll/jekyll/issues/2444">#2444</a>)</li>
2072
- <li>Extract <code class="highlighter-rouge">gist</code> tag into a separate gem (<a href="https://github.com/jekyll/jekyll/issues/2469">#2469</a>)</li>
2073
- <li>Add <code class="highlighter-rouge">collection</code> attribute to <code class="highlighter-rouge">Document#to_liquid</code> to access the document’s collection label. (<a href="https://github.com/jekyll/jekyll/issues/2436">#2436</a>)</li>
2074
- <li>Upgrade listen to <code class="highlighter-rouge">2.7.6 &lt;= x &lt; 3.0.0</code> (<a href="https://github.com/jekyll/jekyll/issues/2492">#2492</a>)</li>
2075
- <li>Allow configuration of different Twitter and GitHub usernames in site template (<a href="https://github.com/jekyll/jekyll/issues/2485">#2485</a>)</li>
2076
- <li>Bump Pygments to v0.6.0 (<a href="https://github.com/jekyll/jekyll/issues/2504">#2504</a>)</li>
2077
- <li>Front matter defaults for documents in collections (<a href="https://github.com/jekyll/jekyll/issues/2419">#2419</a>)</li>
2078
- <li>Include files with a url which ends in <code class="highlighter-rouge">/</code> in the <code class="highlighter-rouge">site.html_pages</code> list (<a href="https://github.com/jekyll/jekyll/issues/2524">#2524</a>)</li>
2079
- <li>Make <code class="highlighter-rouge">highlight</code> tag use <code class="highlighter-rouge">language-</code> prefix in CSS class (<a href="https://github.com/jekyll/jekyll/issues/2511">#2511</a>)</li>
2080
- <li>Lookup item property via <code class="highlighter-rouge">item#to_liquid</code> before <code class="highlighter-rouge">#data</code> or <code class="highlighter-rouge">#[]</code> in filters (<a href="https://github.com/jekyll/jekyll/issues/2493">#2493</a>)</li>
2081
- <li>Skip initial build of site on serve with flag (<a href="https://github.com/jekyll/jekyll/issues/2477">#2477</a>)</li>
2082
- <li>Add support for <code class="highlighter-rouge">hl_lines</code> in <code class="highlighter-rouge">highlight</code> tag (<a href="https://github.com/jekyll/jekyll/issues/2532">#2532</a>)</li>
2083
- <li>Spike out <code class="highlighter-rouge">--watch</code> flag into a separate gem (<a href="https://github.com/jekyll/jekyll/issues/2550">#2550</a>)</li>
2084
- </ul>
2085
-
2086
- <h3 id="bug-fixes-v2-1-0">Bug Fixes</h3>
2087
-
2088
- <ul>
2089
- <li>Liquid <code class="highlighter-rouge">sort</code> filter should sort even if one of the values is <code class="highlighter-rouge">nil</code> (<a href="https://github.com/jekyll/jekyll/issues/2345">#2345</a>)</li>
2090
- <li>Remove padding on <code class="highlighter-rouge">pre code</code> in the site template CSS (<a href="https://github.com/jekyll/jekyll/issues/2383">#2383</a>)</li>
2091
- <li>Set <code class="highlighter-rouge">log_level</code> earlier to silence info level configuration output (<a href="https://github.com/jekyll/jekyll/issues/2393">#2393</a>)</li>
2092
- <li>Only list pages which have <code class="highlighter-rouge">title</code> in site template (<a href="https://github.com/jekyll/jekyll/issues/2411">#2411</a>)</li>
2093
- <li>Accept <code class="highlighter-rouge">Numeric</code> values for dates, not <code class="highlighter-rouge">Number</code> values (<a href="https://github.com/jekyll/jekyll/issues/2377">#2377</a>)</li>
2094
- <li>Prevent code from overflowing container in site template (<a href="https://github.com/jekyll/jekyll/issues/2429">#2429</a>)</li>
2095
- <li>Encode URLs in UTF-8 when escaping and unescaping (<a href="https://github.com/jekyll/jekyll/issues/2420">#2420</a>)</li>
2096
- <li>No Layouts or Liquid for Asset Files (<a href="https://github.com/jekyll/jekyll/issues/2431">#2431</a>)</li>
2097
- <li>Allow front matter defaults to set post categories (<a href="https://github.com/jekyll/jekyll/issues/2373">#2373</a>)</li>
2098
- <li>Fix command in subcommand deprecation warning (<a href="https://github.com/jekyll/jekyll/issues/2457">#2457</a>)</li>
2099
- <li>Keep all parent directories of files/dirs in <code class="highlighter-rouge">keep_files</code> (<a href="https://github.com/jekyll/jekyll/issues/2458">#2458</a>)</li>
2100
- <li>When using RedCarpet and Rouge without Rouge installed, fixed erroneous error which stated that redcarpet was missing, not rouge. (<a href="https://github.com/jekyll/jekyll/issues/2464">#2464</a>)</li>
2101
- <li>Ignore <em>all</em> directories and files that merit it on auto-generation (<a href="https://github.com/jekyll/jekyll/issues/2459">#2459</a>)</li>
2102
- <li>Before copying file, explicitly remove the old one (<a href="https://github.com/jekyll/jekyll/issues/2535">#2535</a>)</li>
2103
- <li>Merge file system categories with categories from YAML. (<a href="https://github.com/jekyll/jekyll/issues/2531">#2531</a>)</li>
2104
- <li>Deep merge front matter defaults (<a href="https://github.com/jekyll/jekyll/issues/2490">#2490</a>)</li>
2105
- <li>Ensure exclude and include arrays are arrays of strings (<a href="https://github.com/jekyll/jekyll/issues/2542">#2542</a>)</li>
2106
- <li>Allow collections to have dots in their filenames (<a href="https://github.com/jekyll/jekyll/issues/2552">#2552</a>)</li>
2107
- <li>Collections shouldn’t try to read in directories as files (<a href="https://github.com/jekyll/jekyll/issues/2552">#2552</a>)</li>
2108
- <li>Be quiet very quickly. (<a href="https://github.com/jekyll/jekyll/issues/2520">#2520</a>)</li>
2109
- </ul>
2110
-
2111
- <h3 id="development-fixes-v2-1-0">Development Fixes</h3>
2112
-
2113
- <ul>
2114
- <li>Test Ruby 2.1.2 instead of 2.1.1 (<a href="https://github.com/jekyll/jekyll/issues/2374">#2374</a>)</li>
2115
- <li>Add test for sorting UTF-8 characters (<a href="https://github.com/jekyll/jekyll/issues/2384">#2384</a>)</li>
2116
- <li>Use <code class="highlighter-rouge">https</code> for GitHub links in documentation (<a href="https://github.com/jekyll/jekyll/issues/2470">#2470</a>)</li>
2117
- <li>Remove coverage reporting with Coveralls (<a href="https://github.com/jekyll/jekyll/issues/2494">#2494</a>)</li>
2118
- <li>Fix a bit of missing TomDoc to <code class="highlighter-rouge">Jekyll::Commands::Build#build</code> (<a href="https://github.com/jekyll/jekyll/issues/2554">#2554</a>)</li>
2119
- </ul>
2120
-
2121
- <h3 id="site-enhancements-v2-1-0">Site Enhancements</h3>
2122
-
2123
- <ul>
2124
- <li>Set <code class="highlighter-rouge">timezone</code> to <code class="highlighter-rouge">America/Los_Angeles</code> (<a href="https://github.com/jekyll/jekyll/issues/2394">#2394</a>)</li>
2125
- <li>Improve JavaScript in <code class="highlighter-rouge">anchor_links.html</code> (<a href="https://github.com/jekyll/jekyll/issues/2368">#2368</a>)</li>
2126
- <li>Remove note on Quickstart page about default markdown converter (<a href="https://github.com/jekyll/jekyll/issues/2387">#2387</a>)</li>
2127
- <li>Remove broken link in extras.md to a Maruku fork (<a href="https://github.com/jekyll/jekyll/issues/2401">#2401</a>)</li>
2128
- <li>Update Font Awesome to v4.1.0. (<a href="https://github.com/jekyll/jekyll/issues/2410">#2410</a>)</li>
2129
- <li>Fix broken link on Installation page to Templates page (<a href="https://github.com/jekyll/jekyll/issues/2421">#2421</a>)</li>
2130
- <li>Prevent table from extending parent width in permalink style table (<a href="https://github.com/jekyll/jekyll/issues/2424">#2424</a>)</li>
2131
- <li>Add collections to info about pagination support (<a href="https://github.com/jekyll/jekyll/issues/2389">#2389</a>)</li>
2132
- <li>Add <code class="highlighter-rouge">jekyll_github_sample</code> plugin to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2463">#2463</a>)</li>
2133
- <li>Clarify documentation around front matter defaults and add details about defaults for collections. (<a href="https://github.com/jekyll/jekyll/issues/2439">#2439</a>)</li>
2134
- <li>Add Jekyll Project Version Tag to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2468">#2468</a>)</li>
2135
- <li>Use <code class="highlighter-rouge">https</code> for GitHub links across whole site (<a href="https://github.com/jekyll/jekyll/issues/2470">#2470</a>)</li>
2136
- <li>Add StickerMule + Jekyll post (<a href="https://github.com/jekyll/jekyll/issues/2476">#2476</a>)</li>
2137
- <li>Add Jekyll Asset Pipeline Reborn to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2479">#2479</a>)</li>
2138
- <li>Add link to jekyll-compress-html to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2514">#2514</a>)</li>
2139
- <li>Add Piwigo Gallery to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2526">#2526</a>)</li>
2140
- <li>Set <code class="highlighter-rouge">show_drafts</code> to <code class="highlighter-rouge">false</code> in default configuration listing (<a href="https://github.com/jekyll/jekyll/issues/2536">#2536</a>)</li>
2141
- <li>Provide an updated link for Windows installation instructions (<a href="https://github.com/jekyll/jekyll/issues/2544">#2544</a>)</li>
2142
- <li>Remove <code class="highlighter-rouge">url</code> from configuration docs (<a href="https://github.com/jekyll/jekyll/issues/2547">#2547</a>)</li>
2143
- <li>Documentation for Continuous Integration for your Jekyll Site (<a href="https://github.com/jekyll/jekyll/issues/2432">#2432</a>)</li>
2144
- </ul>
2145
-
2146
- <h2 id="v2-0-3">2.0.3 / 2014-05-08</h2>
2147
-
2148
- <h3 id="bug-fixes-v2-0-3">Bug Fixes</h3>
2149
-
2150
- <ul>
2151
- <li>Properly prefix links in site template with URL or baseurl depending upon need. (<a href="https://github.com/jekyll/jekyll/issues/2319">#2319</a>)</li>
2152
- <li>Update gist tag comments and error message to require username (<a href="https://github.com/jekyll/jekyll/issues/2326">#2326</a>)</li>
2153
- <li>Fix <code class="highlighter-rouge">permalink</code> setting in site template (<a href="https://github.com/jekyll/jekyll/issues/2331">#2331</a>)</li>
2154
- <li>Don’t fail if any of the path objects are nil (<a href="https://github.com/jekyll/jekyll/issues/2325">#2325</a>)</li>
2155
- <li>Instantiate all descendants for converters and generators, not just direct subclasses (<a href="https://github.com/jekyll/jekyll/issues/2334">#2334</a>)</li>
2156
- <li>Replace all instances of <code class="highlighter-rouge">site.name</code> with <code class="highlighter-rouge">site.title</code> in site template (<a href="https://github.com/jekyll/jekyll/issues/2324">#2324</a>)</li>
2157
- <li>
2158
- <code class="highlighter-rouge">Jekyll::Filters#time</code> now accepts UNIX timestamps in string or number form (<a href="https://github.com/jekyll/jekyll/issues/2339">#2339</a>)</li>
2159
- <li>Use <code class="highlighter-rouge">item_property</code> for <code class="highlighter-rouge">where</code> filter so it doesn’t break on collections (<a href="https://github.com/jekyll/jekyll/issues/2359">#2359</a>)</li>
2160
- <li>Rescue errors thrown so <code class="highlighter-rouge">--watch</code> doesn’t fail (<a href="https://github.com/jekyll/jekyll/issues/2364">#2364</a>)</li>
2161
- </ul>
2162
-
2163
- <h3 id="site-enhancements-v2-0-3">Site Enhancements</h3>
2164
-
2165
- <ul>
2166
- <li>Add missing “as” to assets docs page (<a href="https://github.com/jekyll/jekyll/issues/2337">#2337</a>)</li>
2167
- <li>Update docs to reflect new <code class="highlighter-rouge">baseurl</code> default (<a href="https://github.com/jekyll/jekyll/issues/2341">#2341</a>)</li>
2168
- <li>Add links to headers who have an ID. (<a href="https://github.com/jekyll/jekyll/issues/2342">#2342</a>)</li>
2169
- <li>Use symbol instead of HTML number in <code class="highlighter-rouge">upgrading.md</code> (<a href="https://github.com/jekyll/jekyll/issues/2351">#2351</a>)</li>
2170
- <li>Fix link to front matter defaults docs (<a href="https://github.com/jekyll/jekyll/issues/2353">#2353</a>)</li>
2171
- <li>Fix for <code class="highlighter-rouge">History.markdown</code> in order to fix history page in docs (<a href="https://github.com/jekyll/jekyll/issues/2363">#2363</a>)</li>
2172
- </ul>
2173
-
2174
- <h2 id="v2-0-2">2.0.2 / 2014-05-07</h2>
2175
-
2176
- <h3 id="bug-fixes-v2-0-2">Bug Fixes</h3>
2177
-
2178
- <ul>
2179
- <li>Correct use of <code class="highlighter-rouge">url</code> and <code class="highlighter-rouge">baseurl</code> in the site template. (<a href="https://github.com/jekyll/jekyll/issues/2317">#2317</a>)</li>
2180
- <li>Default <code class="highlighter-rouge">baseurl</code> to <code class="highlighter-rouge">""</code> (<a href="https://github.com/jekyll/jekyll/issues/2317">#2317</a>)</li>
2181
- </ul>
2182
-
2183
- <h3 id="site-enhancements-v2-0-2">Site Enhancements</h3>
2184
-
2185
- <ul>
2186
- <li>Correct docs for the <code class="highlighter-rouge">gist</code> plugin so it always includes the username. (<a href="https://github.com/jekyll/jekyll/issues/2314">#2314</a>)</li>
2187
- <li>Clarify new (defaults, <code class="highlighter-rouge">where</code> filter) features in docs (<a href="https://github.com/jekyll/jekyll/issues/2316">#2316</a>)</li>
2188
- </ul>
2189
-
2190
- <h2 id="v2-0-1">2.0.1 / 2014-05-06</h2>
2191
-
2192
- <h3 id="bug-fixes-v2-0-1">Bug Fixes</h3>
2193
-
2194
- <ul>
2195
- <li>Require <code class="highlighter-rouge">kramdown</code> gem instead of <code class="highlighter-rouge">maruku</code> gem</li>
2196
- </ul>
2197
-
2198
- <h2 id="v2-0-0">2.0.0 / 2014-05-06</h2>
2199
-
2200
- <h3 id="major-enhancements-v2-0-0">Major Enhancements</h3>
2201
-
2202
- <ul>
2203
- <li>Add “Collections” feature (<a href="https://github.com/jekyll/jekyll/issues/2199">#2199</a>)</li>
2204
- <li>Add gem-based plugin whitelist to safe mode (<a href="https://github.com/jekyll/jekyll/issues/1657">#1657</a>)</li>
2205
- <li>Replace the commander command line parser with a more robust solution for our needs called <code class="highlighter-rouge">mercenary</code> (<a href="https://github.com/jekyll/jekyll/issues/1706">#1706</a>)</li>
2206
- <li>Remove support for Ruby 1.8.x (<a href="https://github.com/jekyll/jekyll/issues/1780">#1780</a>)</li>
2207
- <li>Move to jekyll/jekyll from mojombo/jekyll (<a href="https://github.com/jekyll/jekyll/issues/1817">#1817</a>)</li>
2208
- <li>Allow custom markdown processors (<a href="https://github.com/jekyll/jekyll/issues/1872">#1872</a>)</li>
2209
- <li>Provide support for the Rouge syntax highlighter (<a href="https://github.com/jekyll/jekyll/issues/1859">#1859</a>)</li>
2210
- <li>Provide support for Sass (<a href="https://github.com/jekyll/jekyll/issues/1932">#1932</a>)</li>
2211
- <li>Provide a 300% improvement when generating sites that use <code class="highlighter-rouge">Post#next</code> or <code class="highlighter-rouge">Post#previous</code> (<a href="https://github.com/jekyll/jekyll/issues/1983">#1983</a>)</li>
2212
- <li>Provide support for CoffeeScript (<a href="https://github.com/jekyll/jekyll/issues/1991">#1991</a>)</li>
2213
- <li>Replace Maruku with Kramdown as Default Markdown Processor (<a href="https://github.com/jekyll/jekyll/issues/1988">#1988</a>)</li>
2214
- <li>Expose <code class="highlighter-rouge">site.static_files</code> to Liquid (<a href="https://github.com/jekyll/jekyll/issues/2075">#2075</a>)</li>
2215
- <li>Complete redesign of the template site generated by <code class="highlighter-rouge">jekyll new</code> (<a href="https://github.com/jekyll/jekyll/issues/2050">#2050</a>)</li>
2216
- <li>Update Listen from 1.x to 2.x (<a href="https://github.com/jekyll/jekyll/issues/2097">#2097</a>)</li>
2217
- <li>Front matter defaults (<a href="https://github.com/jekyll/jekyll/issues/2205">#2205</a>)</li>
2218
- <li>Deprecate <code class="highlighter-rouge">relative_permalinks</code> configuration option (default to <code class="highlighter-rouge">false</code>) (<a href="https://github.com/jekyll/jekyll/issues/2307">#2307</a>)</li>
2219
- <li>Exclude files based on prefix as well as <code class="highlighter-rouge">fnmatch?</code> (<a href="https://github.com/jekyll/jekyll/issues/2303">#2303</a>)</li>
2220
- </ul>
2221
-
2222
- <h3 id="minor-enhancements-v2-0-0">Minor Enhancements</h3>
2223
-
2224
- <ul>
2225
- <li>Move the EntryFilter class into the Jekyll module to avoid polluting the global namespace (<a href="https://github.com/jekyll/jekyll/issues/1800">#1800</a>)</li>
2226
- <li>Add <code class="highlighter-rouge">group_by</code> Liquid filter create lists of items grouped by a common property’s value (<a href="https://github.com/jekyll/jekyll/issues/1788">#1788</a>)</li>
2227
- <li>Add support for Maruku’s <code class="highlighter-rouge">fenced_code_blocks</code> option (<a href="https://github.com/jekyll/jekyll/issues/1799">#1799</a>)</li>
2228
- <li>Update Redcarpet dependency to ~&gt; 3.0 (<a href="https://github.com/jekyll/jekyll/issues/1815">#1815</a>)</li>
2229
- <li>Automatically sort all pages by name (<a href="https://github.com/jekyll/jekyll/issues/1848">#1848</a>)</li>
2230
- <li>Better error message when time is not parseable (<a href="https://github.com/jekyll/jekyll/issues/1847">#1847</a>)</li>
2231
- <li>Allow <code class="highlighter-rouge">include</code> tag variable arguments to use filters (<a href="https://github.com/jekyll/jekyll/issues/1841">#1841</a>)</li>
2232
- <li>
2233
- <code class="highlighter-rouge">post_url</code> tag should raise <code class="highlighter-rouge">ArgumentError</code> for invalid name (<a href="https://github.com/jekyll/jekyll/issues/1825">#1825</a>)</li>
2234
- <li>Bump dependency <code class="highlighter-rouge">mercenary</code> to <code class="highlighter-rouge">~&gt; 0.2.0</code> (<a href="https://github.com/jekyll/jekyll/issues/1879">#1879</a>)</li>
2235
- <li>Bump dependency <code class="highlighter-rouge">safe_yaml</code> to <code class="highlighter-rouge">~&gt; 1.0</code> (<a href="https://github.com/jekyll/jekyll/issues/1886">#1886</a>)</li>
2236
- <li>Allow sorting of content by custom properties (<a href="https://github.com/jekyll/jekyll/issues/1849">#1849</a>)</li>
2237
- <li>Add <code class="highlighter-rouge">--quiet</code> flag to silence output during build and serve (<a href="https://github.com/jekyll/jekyll/issues/1898">#1898</a>)</li>
2238
- <li>Add a <code class="highlighter-rouge">where</code> filter to filter arrays based on a key/value pair (<a href="https://github.com/jekyll/jekyll/issues/1875">#1875</a>)</li>
2239
- <li>Route 404 errors to a custom 404 page in development (<a href="https://github.com/jekyll/jekyll/issues/1899">#1899</a>)</li>
2240
- <li>Excludes are now relative to the site source (<a href="https://github.com/jekyll/jekyll/issues/1916">#1916</a>)</li>
2241
- <li>Bring MIME Types file for <code class="highlighter-rouge">jekyll serve</code> to complete parity with GH Pages servers (<a href="https://github.com/jekyll/jekyll/issues/1993">#1993</a>)</li>
2242
- <li>Adding Breakpoint to make new site template more responsive (<a href="https://github.com/jekyll/jekyll/issues/2038">#2038</a>)</li>
2243
- <li>Default to using the UTF-8 encoding when reading files. (<a href="https://github.com/jekyll/jekyll/issues/2031">#2031</a>)</li>
2244
- <li>Update Redcarpet dependency to ~&gt; 3.1 (<a href="https://github.com/jekyll/jekyll/issues/2044">#2044</a>)</li>
2245
- <li>Remove support for Ruby 1.9.2 (<a href="https://github.com/jekyll/jekyll/issues/2045">#2045</a>)</li>
2246
- <li>Add <code class="highlighter-rouge">.mkdown</code> as valid Markdown extension (<a href="https://github.com/jekyll/jekyll/issues/2048">#2048</a>)</li>
2247
- <li>Add <code class="highlighter-rouge">index.xml</code> to the list of WEBrick directory index files (<a href="https://github.com/jekyll/jekyll/issues/2041">#2041</a>)</li>
2248
- <li>Make the <code class="highlighter-rouge">layouts</code> config key relative to CWD or to source (<a href="https://github.com/jekyll/jekyll/issues/2058">#2058</a>)</li>
2249
- <li>Update Kramdown to <code class="highlighter-rouge">~&gt; 1.3</code> (<a href="https://github.com/jekyll/jekyll/issues/1894">#1894</a>)</li>
2250
- <li>Remove unnecessary references to <code class="highlighter-rouge">self</code> (<a href="https://github.com/jekyll/jekyll/issues/2090">#2090</a>)</li>
2251
- <li>Update to Mercenary v0.3.x (<a href="https://github.com/jekyll/jekyll/issues/2085">#2085</a>)</li>
2252
- <li>Ship Sass support as a separate gem (<a href="https://github.com/jekyll/jekyll/issues/2098">#2098</a>)</li>
2253
- <li>Extract core extensions into a Utils module (<a href="https://github.com/jekyll/jekyll/issues/2112">#2112</a>)</li>
2254
- <li>Refactor CLI &amp; Commands For Greater Happiness (<a href="https://github.com/jekyll/jekyll/issues/2143">#2143</a>)</li>
2255
- <li>Provide useful error when Pygments returns <code class="highlighter-rouge">nil</code> and error out (<a href="https://github.com/jekyll/jekyll/issues/2148">#2148</a>)</li>
2256
- <li>Add support for unpublished drafts (<a href="https://github.com/jekyll/jekyll/issues/2164">#2164</a>)</li>
2257
- <li>Add <code class="highlighter-rouge">force_polling</code> option to the <code class="highlighter-rouge">serve</code> command (<a href="https://github.com/jekyll/jekyll/issues/2165">#2165</a>)</li>
2258
- <li>Clean up the <code class="highlighter-rouge">&lt;head&gt;</code> in the site template (<a href="https://github.com/jekyll/jekyll/issues/2186">#2186</a>)</li>
2259
- <li>Permit YAML blocks to end with three dots to better conform with the YAML spec (<a href="https://github.com/jekyll/jekyll/issues/2110">#2110</a>)</li>
2260
- <li>Use <code class="highlighter-rouge">File.exist?</code> instead of deprecated <code class="highlighter-rouge">File.exists?</code> (<a href="https://github.com/jekyll/jekyll/issues/2214">#2214</a>)</li>
2261
- <li>Require newline after start of YAML Front Matter header (<a href="https://github.com/jekyll/jekyll/issues/2211">#2211</a>)</li>
2262
- <li>Add the ability for pages to be marked as <code class="highlighter-rouge">published: false</code> (<a href="https://github.com/jekyll/jekyll/issues/1492">#1492</a>)</li>
2263
- <li>Add <code class="highlighter-rouge">Jekyll::LiquidExtensions</code> with <code class="highlighter-rouge">.lookup_variable</code> method for easy looking up of variable values in a Liquid context. (<a href="https://github.com/jekyll/jekyll/issues/2253">#2253</a>)</li>
2264
- <li>Remove literal lang name from class (<a href="https://github.com/jekyll/jekyll/issues/2292">#2292</a>)</li>
2265
- <li>Return <code class="highlighter-rouge">utf-8</code> encoding in header for webrick error page response (<a href="https://github.com/jekyll/jekyll/issues/2289">#2289</a>)</li>
2266
- <li>Make template site easier to customize (<a href="https://github.com/jekyll/jekyll/issues/2268">#2268</a>)</li>
2267
- <li>Add two-digit year to permalink template option (<a href="https://github.com/jekyll/jekyll/issues/2301">#2301</a>)</li>
2268
- <li>Add <code class="highlighter-rouge">site.documents</code> to Liquid payload (list of all docs) (<a href="https://github.com/jekyll/jekyll/issues/2295">#2295</a>)</li>
2269
- <li>Take into account missing values in the Liquid sort filter (<a href="https://github.com/jekyll/jekyll/issues/2299">#2299</a>)</li>
2270
- </ul>
2271
-
2272
- <h3 id="bug-fixes-v2-0-0">Bug Fixes</h3>
2273
-
2274
- <ul>
2275
- <li>Don’t allow nil entries when loading posts (<a href="https://github.com/jekyll/jekyll/issues/1796">#1796</a>)</li>
2276
- <li>Remove the scrollbar that’s always displayed in new sites generated from the site template (<a href="https://github.com/jekyll/jekyll/issues/1805">#1805</a>)</li>
2277
- <li>Add <code class="highlighter-rouge">#path</code> to required methods in <code class="highlighter-rouge">Jekyll::Convertible</code> (<a href="https://github.com/jekyll/jekyll/issues/1866">#1866</a>)</li>
2278
- <li>Default Maruku fenced code blocks to ON for 2.0.0-dev (<a href="https://github.com/jekyll/jekyll/issues/1831">#1831</a>)</li>
2279
- <li>Change short opts for host and port for <code class="highlighter-rouge">jekyll docs</code> to be consistent with other subcommands (<a href="https://github.com/jekyll/jekyll/issues/1877">#1877</a>)</li>
2280
- <li>Fix typos (<a href="https://github.com/jekyll/jekyll/issues/1910">#1910</a>)</li>
2281
- <li>Lock Maruku at 0.7.0 to prevent bugs caused by Maruku 0.7.1 (<a href="https://github.com/jekyll/jekyll/issues/1958">#1958</a>)</li>
2282
- <li>Fixes full path leak to source directory when using include tag (<a href="https://github.com/jekyll/jekyll/issues/1951">#1951</a>)</li>
2283
- <li>Don’t generate pages that aren’t being published (<a href="https://github.com/jekyll/jekyll/issues/1931">#1931</a>)</li>
2284
- <li>Use <code class="highlighter-rouge">SafeYAML.load</code> to avoid conflicts with other projects (<a href="https://github.com/jekyll/jekyll/issues/1982">#1982</a>)</li>
2285
- <li>Relative posts should never fail to build (<a href="https://github.com/jekyll/jekyll/issues/1976">#1976</a>)</li>
2286
- <li>Remove executable bits of non executable files (<a href="https://github.com/jekyll/jekyll/issues/2056">#2056</a>)</li>
2287
- <li>
2288
- <code class="highlighter-rouge">#path</code> for a draft is now <code class="highlighter-rouge">_drafts</code> instead of <code class="highlighter-rouge">_posts</code> (<a href="https://github.com/jekyll/jekyll/issues/2042">#2042</a>)</li>
2289
- <li>Patch a couple show-stopping security vulnerabilities (<a href="https://github.com/jekyll/jekyll/issues/1946">#1946</a>)</li>
2290
- <li>Sanitize paths uniformly, in a Windows-friendly way (<a href="https://github.com/jekyll/jekyll/issues/2065">#2065</a>, <a href="https://github.com/jekyll/jekyll/issues/2109">#2109</a>)</li>
2291
- <li>Update gem build steps to work correctly on Windows (<a href="https://github.com/jekyll/jekyll/issues/2118">#2118</a>)</li>
2292
- <li>Remove obsolete <code class="highlighter-rouge">normalize_options</code> method call from <code class="highlighter-rouge">bin/jekyll</code> (<a href="https://github.com/jekyll/jekyll/issues/2121">#2121</a>)</li>
2293
- <li>Remove <code class="highlighter-rouge">+</code> characters from Pygments lexer names when adding as a CSS class (<a href="https://github.com/jekyll/jekyll/issues/994">#994</a>)</li>
2294
- <li>Remove some code that caused Ruby interpreter warnings (<a href="https://github.com/jekyll/jekyll/issues/2178">#2178</a>)</li>
2295
- <li>Only strip the drive name if it begins the string (<a href="https://github.com/jekyll/jekyll/issues/2175">#2175</a>)</li>
2296
- <li>Remove default post with invalid date from site template (<a href="https://github.com/jekyll/jekyll/issues/2200">#2200</a>)</li>
2297
- <li>Fix <code class="highlighter-rouge">Post#url</code> and <code class="highlighter-rouge">Page#url</code> escape (<a href="https://github.com/jekyll/jekyll/issues/1568">#1568</a>)</li>
2298
- <li>Strip newlines from the <code class="highlighter-rouge">{% highlight %}</code> block content (<a href="https://github.com/jekyll/jekyll/issues/1823">#1823</a>)</li>
2299
- <li>Load in <code class="highlighter-rouge">rouge</code> only when it’s been requested as the highlighter (<a href="https://github.com/jekyll/jekyll/issues/2189">#2189</a>)</li>
2300
- <li>Convert input to string before XML escaping (<code class="highlighter-rouge">xml_escape</code> liquid filter) (<a href="https://github.com/jekyll/jekyll/issues/2244">#2244</a>)</li>
2301
- <li>Modify configuration key for Collections and reset properly. (<a href="https://github.com/jekyll/jekyll/issues/2238">#2238</a>)</li>
2302
- <li>Avoid duplicated output using <code class="highlighter-rouge">highlight</code> tag (<a href="https://github.com/jekyll/jekyll/issues/2264">#2264</a>)</li>
2303
- <li>Only use Jekyll.logger for output (<a href="https://github.com/jekyll/jekyll/issues/2307">#2307</a>)</li>
2304
- <li>Close the file descriptor in <code class="highlighter-rouge">has_yaml_header?</code> (<a href="https://github.com/jekyll/jekyll/issues/2310">#2310</a>)</li>
2305
- <li>Add <code class="highlighter-rouge">output</code> to <code class="highlighter-rouge">Document</code> liquid output hash (<a href="https://github.com/jekyll/jekyll/issues/2309">#2309</a>)</li>
2306
- </ul>
2307
-
2308
- <h3 id="development-fixes-v2-0-0">Development Fixes</h3>
2309
-
2310
- <ul>
2311
- <li>Add a link to the site in the README.md file (<a href="https://github.com/jekyll/jekyll/issues/1795">#1795</a>)</li>
2312
- <li>Add in History and site changes from <code class="highlighter-rouge">v1-stable</code> branch (<a href="https://github.com/jekyll/jekyll/issues/1836">#1836</a>)</li>
2313
- <li>Testing additions on the Excerpt class (<a href="https://github.com/jekyll/jekyll/issues/1893">#1893</a>)</li>
2314
- <li>Fix the <code class="highlighter-rouge">highlight</code> tag feature (<a href="https://github.com/jekyll/jekyll/issues/1859">#1859</a>)</li>
2315
- <li>Test Jekyll under Ruby 2.1.0 (<a href="https://github.com/jekyll/jekyll/issues/1900">#1900</a>)</li>
2316
- <li>Add script/cibuild for fun and profit (<a href="https://github.com/jekyll/jekyll/issues/1912">#1912</a>)</li>
2317
- <li>Use <code class="highlighter-rouge">Forwardable</code> for delegation between <code class="highlighter-rouge">Excerpt</code> and <code class="highlighter-rouge">Post</code> (<a href="https://github.com/jekyll/jekyll/issues/1927">#1927</a>)</li>
2318
- <li>Rename <code class="highlighter-rouge">read_things</code> to <code class="highlighter-rouge">read_content</code> (<a href="https://github.com/jekyll/jekyll/issues/1928">#1928</a>)</li>
2319
- <li>Add <code class="highlighter-rouge">script/branding</code> script for ASCII art lovin’ (<a href="https://github.com/jekyll/jekyll/issues/1936">#1936</a>)</li>
2320
- <li>Update the README to reflect the repo move (<a href="https://github.com/jekyll/jekyll/issues/1943">#1943</a>)</li>
2321
- <li>Add the project vision to the README (<a href="https://github.com/jekyll/jekyll/issues/1935">#1935</a>)</li>
2322
- <li>Speed up Travis CI builds by using Rebund (<a href="https://github.com/jekyll/jekyll/issues/1985">#1985</a>)</li>
2323
- <li>Use Yarp as a Gem proxy for Travis CI (<a href="https://github.com/jekyll/jekyll/issues/1984">#1984</a>)</li>
2324
- <li>Remove Yarp as a Gem proxy for Travis CI (<a href="https://github.com/jekyll/jekyll/issues/2004">#2004</a>)</li>
2325
- <li>Move the reading of layouts into its own class (<a href="https://github.com/jekyll/jekyll/issues/2020">#2020</a>)</li>
2326
- <li>Test Sass import (<a href="https://github.com/jekyll/jekyll/issues/2009">#2009</a>)</li>
2327
- <li>Switch Maruku and Kramdown in lists of Runtime vs. Development dependencies (<a href="https://github.com/jekyll/jekyll/issues/2049">#2049</a>)</li>
2328
- <li>Clean up the gemspec for the project (<a href="https://github.com/jekyll/jekyll/issues/2095">#2095</a>)</li>
2329
- <li>Add Japanese translation of README and CONTRIBUTING docs. (<a href="https://github.com/jekyll/jekyll/issues/2081">#2081</a>)</li>
2330
- <li>Re-align the tables in Cucumber (<a href="https://github.com/jekyll/jekyll/issues/2108">#2108</a>)</li>
2331
- <li>Trim trailing spaces and convert tabs to spaces (<a href="https://github.com/jekyll/jekyll/issues/2122">#2122</a>)</li>
2332
- <li>Fix the failing Travis scenarios due to Cucumber issues (<a href="https://github.com/jekyll/jekyll/issues/2155">#2155</a>)</li>
2333
- <li>Wrap <code class="highlighter-rouge">bundle install</code> in <code class="highlighter-rouge">travis_retry</code> to retry when RubyGems fails (<a href="https://github.com/jekyll/jekyll/issues/2160">#2160</a>)</li>
2334
- <li>Refactor tags and categories (<a href="https://github.com/jekyll/jekyll/issues/1639">#1639</a>)</li>
2335
- <li>Extract plugin management into its own class (<a href="https://github.com/jekyll/jekyll/issues/2197">#2197</a>)</li>
2336
- <li>Add missing tests for <code class="highlighter-rouge">Command</code> (<a href="https://github.com/jekyll/jekyll/issues/2216">#2216</a>)</li>
2337
- <li>Update <code class="highlighter-rouge">rr</code> link in CONTRIBUTING doc (<a href="https://github.com/jekyll/jekyll/issues/2247">#2247</a>)</li>
2338
- <li>Streamline Cucumber execution of <code class="highlighter-rouge">jekyll</code> subcommands (<a href="https://github.com/jekyll/jekyll/issues/2258">#2258</a>)</li>
2339
- <li>Refactor <code class="highlighter-rouge">Commands::Serve</code>. (<a href="https://github.com/jekyll/jekyll/issues/2269">#2269</a>)</li>
2340
- <li>Refactor <code class="highlighter-rouge">highlight</code> tag (<a href="https://github.com/jekyll/jekyll/issues/2154">#2154</a>)</li>
2341
- <li>Update <code class="highlighter-rouge">Util</code> hash functions with latest from Rails (<a href="https://github.com/jekyll/jekyll/issues/2273">#2273</a>)</li>
2342
- <li>Workaround for Travis bug (<a href="https://github.com/jekyll/jekyll/issues/2290">#2290</a>)</li>
2343
- </ul>
2344
-
2345
- <h3 id="site-enhancements-v2-0-0">Site Enhancements</h3>
2346
-
2347
- <ul>
2348
- <li>Document Kramdown’s GFM parser option (<a href="https://github.com/jekyll/jekyll/issues/1791">#1791</a>)</li>
2349
- <li>Move CSS to includes &amp; update normalize.css to v2.1.3 (<a href="https://github.com/jekyll/jekyll/issues/1787">#1787</a>)</li>
2350
- <li>Minify CSS only in production (<a href="https://github.com/jekyll/jekyll/issues/1803">#1803</a>)</li>
2351
- <li>Fix broken link to installation of Ruby on Mountain Lion blog post on Troubleshooting docs page (<a href="https://github.com/jekyll/jekyll/issues/1797">#1797</a>)</li>
2352
- <li>Fix issues with 1.4.1 release blog post (<a href="https://github.com/jekyll/jekyll/issues/1804">#1804</a>)</li>
2353
- <li>Add note about deploying to OpenShift (<a href="https://github.com/jekyll/jekyll/issues/1812">#1812</a>)</li>
2354
- <li>Collect all Windows-related docs onto one page (<a href="https://github.com/jekyll/jekyll/issues/1818">#1818</a>)</li>
2355
- <li>Fixed typo in datafiles doc page (<a href="https://github.com/jekyll/jekyll/issues/1854">#1854</a>)</li>
2356
- <li>Clarify how to access <code class="highlighter-rouge">site</code> in docs (<a href="https://github.com/jekyll/jekyll/issues/1864">#1864</a>)</li>
2357
- <li>Add closing <code class="highlighter-rouge">&lt;code&gt;</code> tag to <code class="highlighter-rouge">context.registers[:site]</code> note (<a href="https://github.com/jekyll/jekyll/issues/1867">#1867</a>)</li>
2358
- <li>Fix link to <a href="https://github.com/mojombo">@mojombo</a>’s site source (<a href="https://github.com/jekyll/jekyll/issues/1897">#1897</a>)</li>
2359
- <li>Add <code class="highlighter-rouge">paginate: nil</code> to default configuration in docs (<a href="https://github.com/jekyll/jekyll/issues/1896">#1896</a>)</li>
2360
- <li>Add link to our License in the site footer (<a href="https://github.com/jekyll/jekyll/issues/1889">#1889</a>)</li>
2361
- <li>Add a charset note in “Writing Posts” doc page (<a href="https://github.com/jekyll/jekyll/issues/1902">#1902</a>)</li>
2362
- <li>Disallow selection of path and prompt in bash examples</li>
2363
- <li>Add jekyll-compass to the plugin list (<a href="https://github.com/jekyll/jekyll/issues/1923">#1923</a>)</li>
2364
- <li>Add note in Posts docs about stripping <code class="highlighter-rouge">&lt;p&gt;</code> tags from excerpt (<a href="https://github.com/jekyll/jekyll/issues/1933">#1933</a>)</li>
2365
- <li>Add additional info about the new exclude behavior (<a href="https://github.com/jekyll/jekyll/issues/1938">#1938</a>)</li>
2366
- <li>Linkify ‘awesome contributors’ to point to the contributors graph on GitHub (<a href="https://github.com/jekyll/jekyll/issues/1940">#1940</a>)</li>
2367
- <li>Update <code class="highlighter-rouge">docs/sites.md</code> link to GitHub Training materials (<a href="https://github.com/jekyll/jekyll/issues/1949">#1949</a>)</li>
2368
- <li>Update <code class="highlighter-rouge">master</code> with the release info from 1.4.3 (<a href="https://github.com/jekyll/jekyll/issues/1947">#1947</a>)</li>
2369
- <li>Define docs nav in datafile (<a href="https://github.com/jekyll/jekyll/issues/1953">#1953</a>)</li>
2370
- <li>Clarify the docs around the naming convention for posts (<a href="https://github.com/jekyll/jekyll/issues/1971">#1971</a>)</li>
2371
- <li>Add missing <code class="highlighter-rouge">next</code> and <code class="highlighter-rouge">previous</code> docs for post layouts and templates (<a href="https://github.com/jekyll/jekyll/issues/1970">#1970</a>)</li>
2372
- <li>Add note to <code class="highlighter-rouge">Writing posts</code> page about how to strip html from excerpt (<a href="https://github.com/jekyll/jekyll/issues/1962">#1962</a>)</li>
2373
- <li>Add <code class="highlighter-rouge">jekyll-humanize</code> plugin to plugin list (<a href="https://github.com/jekyll/jekyll/issues/1998">#1998</a>)</li>
2374
- <li>Add <code class="highlighter-rouge">jekyll-font-awesome</code> plugin to plugin list (<a href="https://github.com/jekyll/jekyll/issues/1999">#1999</a>)</li>
2375
- <li>Add <code class="highlighter-rouge">sublime-jekyll</code> to list of Editor plugins (<a href="https://github.com/jekyll/jekyll/issues/2001">#2001</a>)</li>
2376
- <li>Add <code class="highlighter-rouge">vim-jekyll</code> to the list of Editor plugins (<a href="https://github.com/jekyll/jekyll/issues/2005">#2005</a>)</li>
2377
- <li>Fix non-semantic nesting of <code class="highlighter-rouge">p</code> tags in <code class="highlighter-rouge">news_item</code> layout (<a href="https://github.com/jekyll/jekyll/issues/2013">#2013</a>)</li>
2378
- <li>Document destination folder cleaning (<a href="https://github.com/jekyll/jekyll/issues/2016">#2016</a>)</li>
2379
- <li>Updated instructions for NearlyFreeSpeech.NET installation (<a href="https://github.com/jekyll/jekyll/issues/2015">#2015</a>)</li>
2380
- <li>Update link to rack-jekyll on “Deployment Methods” page (<a href="https://github.com/jekyll/jekyll/issues/2047">#2047</a>)</li>
2381
- <li>Fix typo in /docs/configuration (<a href="https://github.com/jekyll/jekyll/issues/2073">#2073</a>)</li>
2382
- <li>Fix count in docs for <code class="highlighter-rouge">site.static_files</code> (<a href="https://github.com/jekyll/jekyll/issues/2077">#2077</a>)</li>
2383
- <li>Update configuration docs to indicate utf-8 is the default for 2.0.0 and ASCII for 1.9.3 (<a href="https://github.com/jekyll/jekyll/issues/2074">#2074</a>)</li>
2384
- <li>Add info about unreleased feature to the site (<a href="https://github.com/jekyll/jekyll/issues/2061">#2061</a>)</li>
2385
- <li>Add whitespace to liquid example in GitHub Pages docs (<a href="https://github.com/jekyll/jekyll/issues/2084">#2084</a>)</li>
2386
- <li>Clarify the way Sass and CoffeeScript files are read in and output (<a href="https://github.com/jekyll/jekyll/issues/2067">#2067</a>)</li>
2387
- <li>Add lyche gallery tag plugin link to list of plugins (<a href="https://github.com/jekyll/jekyll/issues/2094">#2094</a>)</li>
2388
- <li>Add Jekyll Pages Directory plugin to list of plugins (<a href="https://github.com/jekyll/jekyll/issues/2096">#2096</a>)</li>
2389
- <li>Update Configuration docs page with new markdown extension (<a href="https://github.com/jekyll/jekyll/issues/2102">#2102</a>)</li>
2390
- <li>Add <code class="highlighter-rouge">jekyll-image-set</code> to the list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2105">#2105</a>)</li>
2391
- <li>Losslessly compress images (<a href="https://github.com/jekyll/jekyll/issues/2128">#2128</a>)</li>
2392
- <li>Update normalize.css to 3.0.0 (<a href="https://github.com/jekyll/jekyll/issues/2126">#2126</a>)</li>
2393
- <li>Update modernizr to v2.7.1 (<a href="https://github.com/jekyll/jekyll/issues/2129">#2129</a>)</li>
2394
- <li>Add <code class="highlighter-rouge">jekyll-ordinal</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2150">#2150</a>)</li>
2395
- <li>Add <code class="highlighter-rouge">jekyll_figure</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2158">#2158</a>)</li>
2396
- <li>Clarify the documentation for safe mode (<a href="https://github.com/jekyll/jekyll/issues/2163">#2163</a>)</li>
2397
- <li>Some HTML tidying (<a href="https://github.com/jekyll/jekyll/issues/2130">#2130</a>)</li>
2398
- <li>Remove modernizr and use html5shiv.js directly for IE less than v9 (<a href="https://github.com/jekyll/jekyll/issues/2131">#2131</a>)</li>
2399
- <li>Remove unused images (<a href="https://github.com/jekyll/jekyll/issues/2187">#2187</a>)</li>
2400
- <li>Use <code class="highlighter-rouge">array_to_sentence_string</code> filter when outputting news item categories (<a href="https://github.com/jekyll/jekyll/issues/2191">#2191</a>)</li>
2401
- <li>Add link to Help repo in primary navigation bar (<a href="https://github.com/jekyll/jekyll/issues/2177">#2177</a>)</li>
2402
- <li>Switch to using an ico file for the shortcut icon (<a href="https://github.com/jekyll/jekyll/issues/2193">#2193</a>)</li>
2403
- <li>Use numbers to specify font weights and only bring in font weights used (<a href="https://github.com/jekyll/jekyll/issues/2185">#2185</a>)</li>
2404
- <li>Add a link to the list of all tz database time zones (<a href="https://github.com/jekyll/jekyll/issues/1824">#1824</a>)</li>
2405
- <li>Clean-up and improve documentation <code class="highlighter-rouge">feed.xml</code> (<a href="https://github.com/jekyll/jekyll/issues/2192">#2192</a>)</li>
2406
- <li>Remove duplicate entry in list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2206">#2206</a>)</li>
2407
- <li>Reduce the whitespace in the favicon. (<a href="https://github.com/jekyll/jekyll/issues/2213">#2213</a>)</li>
2408
- <li>Add <code class="highlighter-rouge">jekyll-page-collections</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2215">#2215</a>)</li>
2409
- <li>Add a cross-reference about <code class="highlighter-rouge">post_url</code> (<a href="https://github.com/jekyll/jekyll/issues/2243">#2243</a>)</li>
2410
- <li>Add <code class="highlighter-rouge">jekyll-live-tiles</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2250">#2250</a>)</li>
2411
- <li>Fixed broken link to GitHub training material site source (<a href="https://github.com/jekyll/jekyll/issues/2257">#2257</a>)</li>
2412
- <li>Update link to help repo, now called <code class="highlighter-rouge">jekyll-help</code> (<a href="https://github.com/jekyll/jekyll/issues/2277">#2277</a>)</li>
2413
- <li>Fix capitalization of ‘Jekyll’ on Deployment Methods page (<a href="https://github.com/jekyll/jekyll/issues/2291">#2291</a>)</li>
2414
- <li>Include plugins by sonnym in list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2297">#2297</a>)</li>
2415
- <li>Add deprecated articles keeper filter to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/2300">#2300</a>)</li>
2416
- <li>Simplify and improve our CSS. (<a href="https://github.com/jekyll/jekyll/issues/2127">#2127</a>)</li>
2417
- <li>Use black text color for the mobile navbar (<a href="https://github.com/jekyll/jekyll/issues/2306">#2306</a>)</li>
2418
- <li>Use the built in date filter and <code class="highlighter-rouge">site.time</code> for the copyright year. (<a href="https://github.com/jekyll/jekyll/issues/2305">#2305</a>)</li>
2419
- <li>Update html5shiv to v3.7.2 (<a href="https://github.com/jekyll/jekyll/issues/2304">#2304</a>)</li>
2420
- <li>Add 2.0.0 release post (<a href="https://github.com/jekyll/jekyll/issues/2298">#2298</a>)</li>
2421
- <li>Add docs for custom markdown processors (<a href="https://github.com/jekyll/jekyll/issues/2298">#2298</a>)</li>
2422
- <li>Add docs for <code class="highlighter-rouge">where</code> and <code class="highlighter-rouge">group_by</code> Liquid filters (<a href="https://github.com/jekyll/jekyll/issues/2298">#2298</a>)</li>
2423
- <li>Remove notes in docs for unreleased features (<a href="https://github.com/jekyll/jekyll/issues/2309">#2309</a>)</li>
2424
- </ul>
2425
-
2426
- <h2 id="v1-5-1">1.5.1 / 2014-03-27</h2>
2427
-
2428
- <h3 id="bug-fixes-v1-5-1">Bug Fixes</h3>
2429
-
2430
- <ul>
2431
- <li>Only strip the drive name if it begins the string (<a href="https://github.com/jekyll/jekyll/issues/2176">#2176</a>)</li>
2432
- </ul>
2433
-
2434
- <h2 id="v1-5-0">1.5.0 / 2014-03-24</h2>
2435
-
2436
- <h3 id="minor-enhancements-v1-5-0">Minor Enhancements</h3>
2437
-
2438
- <ul>
2439
- <li>Loosen <code class="highlighter-rouge">safe_yaml</code> dependency to <code class="highlighter-rouge">~&gt; 1.0</code> (<a href="https://github.com/jekyll/jekyll/issues/2167">#2167</a>)</li>
2440
- <li>Bump <code class="highlighter-rouge">safe_yaml</code> dependency to <code class="highlighter-rouge">~&gt; 1.0.0</code> (<a href="https://github.com/jekyll/jekyll/issues/1942">#1942</a>)</li>
2441
- </ul>
2442
-
2443
- <h3 id="bug-fixes-v1-5-0">Bug Fixes</h3>
2444
-
2445
- <ul>
2446
- <li>Fix issue where filesystem traversal restriction broke Windows (<a href="https://github.com/jekyll/jekyll/issues/2167">#2167</a>)</li>
2447
- <li>Lock <code class="highlighter-rouge">maruku</code> at <code class="highlighter-rouge">0.7.0</code> (<a href="https://github.com/jekyll/jekyll/issues/2167">#2167</a>)</li>
2448
- </ul>
2449
-
2450
- <h3 id="development-fixes-v1-5-0">Development Fixes</h3>
2451
-
2452
- <ul>
2453
- <li>Lock <code class="highlighter-rouge">cucumber</code> at <code class="highlighter-rouge">1.3.11</code> (<a href="https://github.com/jekyll/jekyll/issues/2167">#2167</a>)</li>
2454
- </ul>
2455
-
2456
- <h2 id="v1-4-3">1.4.3 / 2014-01-13</h2>
2457
-
2458
- <h3 id="bug-fixes-v1-4-3">Bug Fixes</h3>
2459
-
2460
- <ul>
2461
- <li>Patch show-stopping security vulnerabilities (<a href="https://github.com/jekyll/jekyll/issues/1944">#1944</a>)</li>
2462
- </ul>
2463
-
2464
- <h2 id="v1-4-2">1.4.2 / 2013-12-16</h2>
2465
-
2466
- <h3 id="bug-fixes-v1-4-2">Bug Fixes</h3>
2467
-
2468
- <ul>
2469
- <li>Turn on Maruku fenced code blocks by default (<a href="https://github.com/jekyll/jekyll/issues/1830">#1830</a>)</li>
2470
- </ul>
2471
-
2472
- <h2 id="v1-4-1">1.4.1 / 2013-12-09</h2>
2473
-
2474
- <h3 id="bug-fixes-v1-4-1">Bug Fixes</h3>
2475
-
2476
- <ul>
2477
- <li>Don’t allow nil entries when loading posts (<a href="https://github.com/jekyll/jekyll/issues/1796">#1796</a>)</li>
2478
- </ul>
2479
-
2480
- <h2 id="v1-4-0">1.4.0 / 2013-12-07</h2>
2481
-
2482
- <h3 id="major-enhancements-v1-4-0">Major Enhancements</h3>
2483
-
2484
- <ul>
2485
- <li>Add support for TOML config files (<a href="https://github.com/jekyll/jekyll/issues/1765">#1765</a>)</li>
2486
- </ul>
2487
-
2488
- <h3 id="minor-enhancements-v1-4-0">Minor Enhancements</h3>
2489
-
2490
- <ul>
2491
- <li>Sort plugins as a way to establish a load order (<a href="https://github.com/jekyll/jekyll/issues/1682">#1682</a>)</li>
2492
- <li>Update Maruku to 0.7.0 (<a href="https://github.com/jekyll/jekyll/issues/1775">#1775</a>)</li>
2493
- </ul>
2494
-
2495
- <h3 id="bug-fixes-v1-4-0">Bug Fixes</h3>
2496
-
2497
- <ul>
2498
- <li>Add a space between two words in a Pagination warning message (<a href="https://github.com/jekyll/jekyll/issues/1769">#1769</a>)</li>
2499
- <li>Upgrade <code class="highlighter-rouge">toml</code> gem to <code class="highlighter-rouge">v0.1.0</code> to maintain compat with Ruby 1.8.7 (<a href="https://github.com/jekyll/jekyll/issues/1778">#1778</a>)</li>
2500
- </ul>
2501
-
2502
- <h3 id="development-fixes-v1-4-0">Development Fixes</h3>
2503
-
2504
- <ul>
2505
- <li>Remove some whitespace in the code (<a href="https://github.com/jekyll/jekyll/issues/1755">#1755</a>)</li>
2506
- <li>Remove some duplication in the reading of posts and drafts (<a href="https://github.com/jekyll/jekyll/issues/1779">#1779</a>)</li>
2507
- </ul>
2508
-
2509
- <h3 id="site-enhancements-v1-4-0">Site Enhancements</h3>
2510
-
2511
- <ul>
2512
- <li>Fixed case of a word in the Jekyll v1.3.0 release post (<a href="https://github.com/jekyll/jekyll/issues/1762">#1762</a>)</li>
2513
- <li>Fixed the mime type for the favicon (<a href="https://github.com/jekyll/jekyll/issues/1772">#1772</a>)</li>
2514
- </ul>
2515
-
2516
- <h2 id="v1-3-1">1.3.1 / 2013-11-26</h2>
2517
-
2518
- <h3 id="minor-enhancements-v1-3-1">Minor Enhancements</h3>
2519
-
2520
- <ul>
2521
- <li>Add a <code class="highlighter-rouge">--prefix</code> option to passthrough for the importers (<a href="https://github.com/jekyll/jekyll/issues/1669">#1669</a>)</li>
2522
- <li>Push the paginator plugin lower in the plugin priority order so other plugins run before it (<a href="https://github.com/jekyll/jekyll/issues/1759">#1759</a>)</li>
2523
- </ul>
2524
-
2525
- <h3 id="bug-fixes-v1-3-1">Bug Fixes</h3>
2526
-
2527
- <ul>
2528
- <li>Fix the include tag when ran in a loop (<a href="https://github.com/jekyll/jekyll/issues/1726">#1726</a>)</li>
2529
- <li>Fix errors when using <code class="highlighter-rouge">--watch</code> on 1.8.7 (<a href="https://github.com/jekyll/jekyll/issues/1730">#1730</a>)</li>
2530
- <li>Specify where the include is called from if an included file is missing (<a href="https://github.com/jekyll/jekyll/issues/1746">#1746</a>)</li>
2531
- </ul>
2532
-
2533
- <h3 id="development-fixes-v1-3-1">Development Fixes</h3>
2534
-
2535
- <ul>
2536
- <li>Extract <code class="highlighter-rouge">Site#filter_entries</code> into its own object (<a href="https://github.com/jekyll/jekyll/issues/1697">#1697</a>)</li>
2537
- <li>Enable Travis’ bundle caching (<a href="https://github.com/jekyll/jekyll/issues/1734">#1734</a>)</li>
2538
- <li>Remove trailing whitespace in some files (<a href="https://github.com/jekyll/jekyll/issues/1736">#1736</a>)</li>
2539
- <li>Fix a duplicate test name (<a href="https://github.com/jekyll/jekyll/issues/1754">#1754</a>)</li>
2540
- </ul>
2541
-
2542
- <h3 id="site-enhancements-v1-3-1">Site Enhancements</h3>
2543
-
2544
- <ul>
2545
- <li>Update link to example Rakefile to point to specific commit (<a href="https://github.com/jekyll/jekyll/issues/1741">#1741</a>)</li>
2546
- <li>Fix drafts docs to indicate that draft time is based on file modification time, not <code class="highlighter-rouge">Time.now</code> (<a href="https://github.com/jekyll/jekyll/issues/1695">#1695</a>)</li>
2547
- <li>Add <code class="highlighter-rouge">jekyll-monthly-archive-plugin</code> and <code class="highlighter-rouge">jekyll-category-archive-plugin</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1693">#1693</a>)</li>
2548
- <li>Add <code class="highlighter-rouge">jekyll-asset-path-plugin</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1670">#1670</a>)</li>
2549
- <li>Add <code class="highlighter-rouge">emoji-for-jekyll</code> to list of third-part plugins (<a href="https://github.com/jekyll/jekyll/issues/1708">#1708</a>)</li>
2550
- <li>Fix previous section link on plugins page to point to pagination page (<a href="https://github.com/jekyll/jekyll/issues/1707">#1707</a>)</li>
2551
- <li>Add <code class="highlighter-rouge">org-mode</code> converter plugin to third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1711">#1711</a>)</li>
2552
- <li>Point “Blog migrations” page to http://import.jekyllrb.com (<a href="https://github.com/jekyll/jekyll/issues/1732">#1732</a>)</li>
2553
- <li>Add docs for <code class="highlighter-rouge">post_url</code> when posts are in subdirectories (<a href="https://github.com/jekyll/jekyll/issues/1718">#1718</a>)</li>
2554
- <li>Update the docs to point to <code class="highlighter-rouge">example.com</code> (<a href="https://github.com/jekyll/jekyll/issues/1448">#1448</a>)</li>
2555
- </ul>
2556
-
2557
- <h2 id="v1-3-0">1.3.0 / 2013-11-04</h2>
2558
-
2559
- <h3 id="major-enhancements-v1-3-0">Major Enhancements</h3>
2560
-
2561
- <ul>
2562
- <li>Add support for adding data as YAML files under a site’s <code class="highlighter-rouge">_data</code> directory (<a href="https://github.com/jekyll/jekyll/issues/1003">#1003</a>)</li>
2563
- <li>Allow variables to be used with <code class="highlighter-rouge">include</code> tags (<a href="https://github.com/jekyll/jekyll/issues/1495">#1495</a>)</li>
2564
- <li>Allow using gems for plugin management (<a href="https://github.com/jekyll/jekyll/issues/1557">#1557</a>)</li>
2565
- </ul>
2566
-
2567
- <h3 id="minor-enhancements-v1-3-0">Minor Enhancements</h3>
2568
-
2569
- <ul>
2570
- <li>Decrease the specificity in the site template CSS (<a href="https://github.com/jekyll/jekyll/issues/1574">#1574</a>)</li>
2571
- <li>Add <code class="highlighter-rouge">encoding</code> configuration option (<a href="https://github.com/jekyll/jekyll/issues/1449">#1449</a>)</li>
2572
- <li>Provide better error handling for Jekyll’s custom Liquid tags (<a href="https://github.com/jekyll/jekyll/issues/1514">#1514</a>)</li>
2573
- <li>If an included file causes a Liquid error, add the path to the include file that caused the error to the error message (<a href="https://github.com/jekyll/jekyll/issues/1596">#1596</a>)</li>
2574
- <li>If a layout causes a Liquid error, change the error message so that we know it comes from the layout (<a href="https://github.com/jekyll/jekyll/issues/1601">#1601</a>)</li>
2575
- <li>Update Kramdown dependency to <code class="highlighter-rouge">~&gt; 1.2</code> (<a href="https://github.com/jekyll/jekyll/issues/1610">#1610</a>)</li>
2576
- <li>Update <code class="highlighter-rouge">safe_yaml</code> dependency to <code class="highlighter-rouge">~&gt; 0.9.7</code> (<a href="https://github.com/jekyll/jekyll/issues/1602">#1602</a>)</li>
2577
- <li>Allow layouts to be in subfolders like includes (<a href="https://github.com/jekyll/jekyll/issues/1622">#1622</a>)</li>
2578
- <li>Switch to listen for site watching while serving (<a href="https://github.com/jekyll/jekyll/issues/1589">#1589</a>)</li>
2579
- <li>Add a <code class="highlighter-rouge">json</code> liquid filter to be used in sites (<a href="https://github.com/jekyll/jekyll/issues/1651">#1651</a>)</li>
2580
- <li>Point people to the migration docs when the <code class="highlighter-rouge">jekyll-import</code> gem is missing (<a href="https://github.com/jekyll/jekyll/issues/1662">#1662</a>)</li>
2581
- </ul>
2582
-
2583
- <h3 id="bug-fixes-v1-3-0">Bug Fixes</h3>
2584
-
2585
- <ul>
2586
- <li>Fix up matching against source and destination when the two locations are similar (<a href="https://github.com/jekyll/jekyll/issues/1556">#1556</a>)</li>
2587
- <li>Fix the missing <code class="highlighter-rouge">pathname</code> require in certain cases (<a href="https://github.com/jekyll/jekyll/issues/1255">#1255</a>)</li>
2588
- <li>Use <code class="highlighter-rouge">+</code> instead of <code class="highlighter-rouge">Array#concat</code> when building <code class="highlighter-rouge">Post</code> attribute list (<a href="https://github.com/jekyll/jekyll/issues/1571">#1571</a>)</li>
2589
- <li>Print server address when launching a server (<a href="https://github.com/jekyll/jekyll/issues/1586">#1586</a>)</li>
2590
- <li>Downgrade to Maruku <code class="highlighter-rouge">~&gt; 0.6.0</code> in order to avoid changes in rendering (<a href="https://github.com/jekyll/jekyll/issues/1598">#1598</a>)</li>
2591
- <li>Fix error with failing include tag when variable was file name (<a href="https://github.com/jekyll/jekyll/issues/1613">#1613</a>)</li>
2592
- <li>Downcase lexers before passing them to pygments (<a href="https://github.com/jekyll/jekyll/issues/1615">#1615</a>)</li>
2593
- <li>Capitalize the short verbose switch because it conflicts with the built-in Commander switch (<a href="https://github.com/jekyll/jekyll/issues/1660">#1660</a>)</li>
2594
- <li>Fix compatibility with 1.8.x (<a href="https://github.com/jekyll/jekyll/issues/1665">#1665</a>)</li>
2595
- <li>Fix an error with the new file watching code due to library version incompatibilities (<a href="https://github.com/jekyll/jekyll/issues/1687">#1687</a>)</li>
2596
- </ul>
2597
-
2598
- <h3 id="development-fixes-v1-3-0">Development Fixes</h3>
2599
-
2600
- <ul>
2601
- <li>Add coverage reporting with Coveralls (<a href="https://github.com/jekyll/jekyll/issues/1539">#1539</a>)</li>
2602
- <li>Refactor the Liquid <code class="highlighter-rouge">include</code> tag (<a href="https://github.com/jekyll/jekyll/issues/1490">#1490</a>)</li>
2603
- <li>Update launchy dependency to <code class="highlighter-rouge">~&gt; 2.3</code> (<a href="https://github.com/jekyll/jekyll/issues/1608">#1608</a>)</li>
2604
- <li>Update rr dependency to <code class="highlighter-rouge">~&gt; 1.1</code> (<a href="https://github.com/jekyll/jekyll/issues/1604">#1604</a>)</li>
2605
- <li>Update cucumber dependency to <code class="highlighter-rouge">~&gt; 1.3</code> (<a href="https://github.com/jekyll/jekyll/issues/1607">#1607</a>)</li>
2606
- <li>Update coveralls dependency to <code class="highlighter-rouge">~&gt; 0.7.0</code> (<a href="https://github.com/jekyll/jekyll/issues/1606">#1606</a>)</li>
2607
- <li>Update rake dependency to <code class="highlighter-rouge">~&gt; 10.1</code> (<a href="https://github.com/jekyll/jekyll/issues/1603">#1603</a>)</li>
2608
- <li>Clean up <code class="highlighter-rouge">site.rb</code> comments to be more concise/uniform (<a href="https://github.com/jekyll/jekyll/issues/1616">#1616</a>)</li>
2609
- <li>Use the master branch for the build badge in the readme (<a href="https://github.com/jekyll/jekyll/issues/1636">#1636</a>)</li>
2610
- <li>Refactor Site#render (<a href="https://github.com/jekyll/jekyll/issues/1638">#1638</a>)</li>
2611
- <li>Remove duplication in command line options (<a href="https://github.com/jekyll/jekyll/issues/1637">#1637</a>)</li>
2612
- <li>Add tests for all the coderay options (<a href="https://github.com/jekyll/jekyll/issues/1543">#1543</a>)</li>
2613
- <li>Improve some of the Cucumber test code (<a href="https://github.com/jekyll/jekyll/issues/1493">#1493</a>)</li>
2614
- <li>Improve comparisons of timestamps by ignoring the seconds (<a href="https://github.com/jekyll/jekyll/issues/1582">#1582</a>)</li>
2615
- </ul>
2616
-
2617
- <h3 id="site-enhancements-v1-3-0">Site Enhancements</h3>
2618
-
2619
- <ul>
2620
- <li>Fix params for <code class="highlighter-rouge">JekyllImport::WordPress.process</code> arguments (<a href="https://github.com/jekyll/jekyll/issues/1554">#1554</a>)</li>
2621
- <li>Add <code class="highlighter-rouge">jekyll-suggested-tweet</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1555">#1555</a>)</li>
2622
- <li>Link to Liquid’s docs for tags and filters (<a href="https://github.com/jekyll/jekyll/issues/1553">#1553</a>)</li>
2623
- <li>Add note about installing Xcode on the Mac in the Installation docs (<a href="https://github.com/jekyll/jekyll/issues/1561">#1561</a>)</li>
2624
- <li>Simplify/generalize pagination docs (<a href="https://github.com/jekyll/jekyll/issues/1577">#1577</a>)</li>
2625
- <li>Add documentation for the new data sources feature (<a href="https://github.com/jekyll/jekyll/issues/1503">#1503</a>)</li>
2626
- <li>Add more information on how to create generators (<a href="https://github.com/jekyll/jekyll/issues/1590">#1590</a>, <a href="https://github.com/jekyll/jekyll/issues/1592">#1592</a>)</li>
2627
- <li>Improve the instructions for mimicking GitHub Flavored Markdown (<a href="https://github.com/jekyll/jekyll/issues/1614">#1614</a>)</li>
2628
- <li>Add <code class="highlighter-rouge">jekyll-import</code> warning note of missing dependencies (<a href="https://github.com/jekyll/jekyll/issues/1626">#1626</a>)</li>
2629
- <li>Fix grammar in the Usage section (<a href="https://github.com/jekyll/jekyll/issues/1635">#1635</a>)</li>
2630
- <li>Add documentation for the use of gems as plugins (<a href="https://github.com/jekyll/jekyll/issues/1656">#1656</a>)</li>
2631
- <li>Document the existence of a few additional plugins (<a href="https://github.com/jekyll/jekyll/issues/1405">#1405</a>)</li>
2632
- <li>Document that the <code class="highlighter-rouge">date_to_string</code> always returns a two digit day (<a href="https://github.com/jekyll/jekyll/issues/1663">#1663</a>)</li>
2633
- <li>Fix navigation in the “Working with Drafts” page (<a href="https://github.com/jekyll/jekyll/issues/1667">#1667</a>)</li>
2634
- <li>Fix an error with the data documentation (<a href="https://github.com/jekyll/jekyll/issues/1691">#1691</a>)</li>
2635
- </ul>
2636
-
2637
- <h2 id="v1-2-1">1.2.1 / 2013-09-14</h2>
2638
-
2639
- <h3 id="minor-enhancements-v1-2-1">Minor Enhancements</h3>
2640
-
2641
- <ul>
2642
- <li>Print better messages for detached server. Mute output on detach. (<a href="https://github.com/jekyll/jekyll/issues/1518">#1518</a>)</li>
2643
- <li>Disable reverse lookup when running <code class="highlighter-rouge">jekyll serve</code> (<a href="https://github.com/jekyll/jekyll/issues/1363">#1363</a>)</li>
2644
- <li>Upgrade RedCarpet dependency to <code class="highlighter-rouge">~&gt; 2.3.0</code> (<a href="https://github.com/jekyll/jekyll/issues/1515">#1515</a>)</li>
2645
- <li>Upgrade to Liquid <code class="highlighter-rouge">&gt;= 2.5.2, &lt; 2.6</code> (<a href="https://github.com/jekyll/jekyll/issues/1536">#1536</a>)</li>
2646
- </ul>
2647
-
2648
- <h3 id="bug-fixes-v1-2-1">Bug Fixes</h3>
2649
-
2650
- <ul>
2651
- <li>Fix file discrepancy in gemspec (<a href="https://github.com/jekyll/jekyll/issues/1522">#1522</a>)</li>
2652
- <li>Force rendering of Include tag (<a href="https://github.com/jekyll/jekyll/issues/1525">#1525</a>)</li>
2653
- </ul>
2654
-
2655
- <h3 id="development-fixes-v1-2-1">Development Fixes</h3>
2656
-
2657
- <ul>
2658
- <li>Add a rake task to generate a new release post (<a href="https://github.com/jekyll/jekyll/issues/1404">#1404</a>)</li>
2659
- <li>Mute LSI output in tests (<a href="https://github.com/jekyll/jekyll/issues/1531">#1531</a>)</li>
2660
- <li>Update contributor documentation (<a href="https://github.com/jekyll/jekyll/issues/1537">#1537</a>)</li>
2661
- </ul>
2662
-
2663
- <h3 id="site-enhancements-v1-2-1">Site Enhancements</h3>
2664
-
2665
- <ul>
2666
- <li>Fix a couple of validation errors on the site (<a href="https://github.com/jekyll/jekyll/issues/1511">#1511</a>)</li>
2667
- <li>Make navigation menus reusable (<a href="https://github.com/jekyll/jekyll/issues/1507">#1507</a>)</li>
2668
- <li>Fix link to History page from Release v1.2.0 notes post.</li>
2669
- <li>Fix markup in History file for command line options (<a href="https://github.com/jekyll/jekyll/issues/1512">#1512</a>)</li>
2670
- <li>Expand 1.2 release post title to 1.2.0 (<a href="https://github.com/jekyll/jekyll/issues/1516">#1516</a>)</li>
2671
- </ul>
2672
-
2673
- <h2 id="v1-2-0">1.2.0 / 2013-09-06</h2>
2674
-
2675
- <h3 id="major-enhancements-v1-2-0">Major Enhancements</h3>
2676
-
2677
- <ul>
2678
- <li>Disable automatically-generated excerpts when <code class="highlighter-rouge">excerpt_separator</code> is <code class="highlighter-rouge">""</code>. (<a href="https://github.com/jekyll/jekyll/issues/1386">#1386</a>)</li>
2679
- <li>Add checking for URL conflicts when running <code class="highlighter-rouge">jekyll doctor</code> (<a href="https://github.com/jekyll/jekyll/issues/1389">#1389</a>)</li>
2680
- </ul>
2681
-
2682
- <h3 id="minor-enhancements-v1-2-0">Minor Enhancements</h3>
2683
-
2684
- <ul>
2685
- <li>Catch and fix invalid <code class="highlighter-rouge">paginate</code> values (<a href="https://github.com/jekyll/jekyll/issues/1390">#1390</a>)</li>
2686
- <li>Remove superfluous <code class="highlighter-rouge">div.container</code> from the default html template for <code class="highlighter-rouge">jekyll new</code> (<a href="https://github.com/jekyll/jekyll/issues/1315">#1315</a>)</li>
2687
- <li>Add <code class="highlighter-rouge">-D</code> short-form switch for the drafts option (<a href="https://github.com/jekyll/jekyll/issues/1394">#1394</a>)</li>
2688
- <li>Update the links in the site template for Twitter and GitHub (<a href="https://github.com/jekyll/jekyll/issues/1400">#1400</a>)</li>
2689
- <li>Update dummy email address to example.com domain (<a href="https://github.com/jekyll/jekyll/issues/1408">#1408</a>)</li>
2690
- <li>Update normalize.css to v2.1.2 and minify; add rake task to update normalize.css with greater ease. (<a href="https://github.com/jekyll/jekyll/issues/1430">#1430</a>)</li>
2691
- <li>Add the ability to detach the server ran by <code class="highlighter-rouge">jekyll serve</code> from it’s controlling terminal (<a href="https://github.com/jekyll/jekyll/issues/1443">#1443</a>)</li>
2692
- <li>Improve permalink generation for URLs with special characters (<a href="https://github.com/jekyll/jekyll/issues/944">#944</a>)</li>
2693
- <li>Expose the current Jekyll version to posts and pages via a new <code class="highlighter-rouge">jekyll.version</code> variable (<a href="https://github.com/jekyll/jekyll/issues/1481">#1481</a>)</li>
2694
- </ul>
2695
-
2696
- <h3 id="bug-fixes-v1-2-0">Bug Fixes</h3>
2697
-
2698
- <ul>
2699
- <li>Markdown extension matching matches only exact matches (<a href="https://github.com/jekyll/jekyll/issues/1382">#1382</a>)</li>
2700
- <li>Fixed NoMethodError when message passed to <code class="highlighter-rouge">Stevenson#message</code> is nil (<a href="https://github.com/jekyll/jekyll/issues/1388">#1388</a>)</li>
2701
- <li>Use binary mode when writing file (<a href="https://github.com/jekyll/jekyll/issues/1364">#1364</a>)</li>
2702
- <li>Fix ‘undefined method <code class="highlighter-rouge">encoding</code> for “mailto”’ errors w/ Ruby 1.8 and Kramdown &gt; 0.14.0 (<a href="https://github.com/jekyll/jekyll/issues/1397">#1397</a>)</li>
2703
- <li>Do not force the permalink to be a dir if it ends on .html (<a href="https://github.com/jekyll/jekyll/issues/963">#963</a>)</li>
2704
- <li>When a Liquid Exception is caught, show the full path rel. to site source (<a href="https://github.com/jekyll/jekyll/issues/1415">#1415</a>)</li>
2705
- <li>Properly read in the config options when serving the docs locally (<a href="https://github.com/jekyll/jekyll/issues/1444">#1444</a>)</li>
2706
- <li>Fixed <code class="highlighter-rouge">--layouts</code> option for <code class="highlighter-rouge">build</code> and <code class="highlighter-rouge">serve</code> commands (<a href="https://github.com/jekyll/jekyll/issues/1458">#1458</a>)</li>
2707
- <li>Remove kramdown as a runtime dependency since it’s optional (<a href="https://github.com/jekyll/jekyll/issues/1498">#1498</a>)</li>
2708
- <li>Provide proper error handling for invalid file names in the include tag (<a href="https://github.com/jekyll/jekyll/issues/1494">#1494</a>)</li>
2709
- </ul>
2710
-
2711
- <h3 id="development-fixes-v1-2-0">Development Fixes</h3>
2712
-
2713
- <ul>
2714
- <li>Remove redundant argument to Jekyll::Commands::New#scaffold_post_content (<a href="https://github.com/jekyll/jekyll/issues/1356">#1356</a>)</li>
2715
- <li>Add new dependencies to the README (<a href="https://github.com/jekyll/jekyll/issues/1360">#1360</a>)</li>
2716
- <li>Fix link to contributing page in README (<a href="https://github.com/jekyll/jekyll/issues/1424">#1424</a>)</li>
2717
- <li>Update TomDoc in Pager#initialize to match params (<a href="https://github.com/jekyll/jekyll/issues/1441">#1441</a>)</li>
2718
- <li>Refactor <code class="highlighter-rouge">Site#cleanup</code> into <code class="highlighter-rouge">Jekyll::Site::Cleaner</code> class (<a href="https://github.com/jekyll/jekyll/issues/1429">#1429</a>)</li>
2719
- <li>Several other small minor refactorings (<a href="https://github.com/jekyll/jekyll/issues/1341">#1341</a>)</li>
2720
- <li>Ignore <code class="highlighter-rouge">_site</code> in jekyllrb.com deploy (<a href="https://github.com/jekyll/jekyll/issues/1480">#1480</a>)</li>
2721
- <li>Add Gem version and dependency badge to README (<a href="https://github.com/jekyll/jekyll/issues/1497">#1497</a>)</li>
2722
- </ul>
2723
-
2724
- <h3 id="site-enhancements-v1-2-0">Site Enhancements</h3>
2725
-
2726
- <ul>
2727
- <li>Add info about new releases (<a href="https://github.com/jekyll/jekyll/issues/1353">#1353</a>)</li>
2728
- <li>Update plugin list with jekyll-rss plugin (<a href="https://github.com/jekyll/jekyll/issues/1354">#1354</a>)</li>
2729
- <li>Update the site list page with Ruby’s official site (<a href="https://github.com/jekyll/jekyll/issues/1358">#1358</a>)</li>
2730
- <li>Add <code class="highlighter-rouge">jekyll-ditaa</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1370">#1370</a>)</li>
2731
- <li>Add <code class="highlighter-rouge">postfiles</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1373">#1373</a>)</li>
2732
- <li>For internal links, use full path including trailing <code class="highlighter-rouge">/</code> (<a href="https://github.com/jekyll/jekyll/issues/1411">#1411</a>)</li>
2733
- <li>Use curly apostrophes in the docs (<a href="https://github.com/jekyll/jekyll/issues/1419">#1419</a>)</li>
2734
- <li>Update the docs for Redcarpet in Jekyll (<a href="https://github.com/jekyll/jekyll/issues/1418">#1418</a>)</li>
2735
- <li>Add <code class="highlighter-rouge">pluralize</code> and <code class="highlighter-rouge">reading_time</code> filters to docs (<a href="https://github.com/jekyll/jekyll/issues/1439">#1439</a>)</li>
2736
- <li>Fix markup for the Kramdown options (<a href="https://github.com/jekyll/jekyll/issues/1445">#1445</a>)</li>
2737
- <li>Fix typos in the History file (<a href="https://github.com/jekyll/jekyll/issues/1454">#1454</a>)</li>
2738
- <li>Add trailing slash to site’s post URL (<a href="https://github.com/jekyll/jekyll/issues/1462">#1462</a>)</li>
2739
- <li>Clarify that <code class="highlighter-rouge">--config</code> will take multiple files (<a href="https://github.com/jekyll/jekyll/issues/1474">#1474</a>)</li>
2740
- <li>Fix docs/templates.md private gist example (<a href="https://github.com/jekyll/jekyll/issues/1477">#1477</a>)</li>
2741
- <li>Use <code class="highlighter-rouge">site.repository</code> for Jekyll’s GitHub URL (<a href="https://github.com/jekyll/jekyll/issues/1463">#1463</a>)</li>
2742
- <li>Add <code class="highlighter-rouge">jekyll-pageless-redirects</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1486">#1486</a>)</li>
2743
- <li>Clarify that <code class="highlighter-rouge">date_to_xmlschema</code> returns an ISO 8601 string (<a href="https://github.com/jekyll/jekyll/issues/1488">#1488</a>)</li>
2744
- <li>Add <code class="highlighter-rouge">jekyll-good-include</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1491">#1491</a>)</li>
2745
- <li>XML escape the blog post title in our feed (<a href="https://github.com/jekyll/jekyll/issues/1501">#1501</a>)</li>
2746
- <li>Add <code class="highlighter-rouge">jekyll-toc-generator</code> to list of third-party plugins (<a href="https://github.com/jekyll/jekyll/issues/1506">#1506</a>)</li>
2747
- </ul>
2748
-
2749
- <h2 id="v1-1-2">1.1.2 / 2013-07-25</h2>
2750
-
2751
- <h3 id="bug-fixes-v1-1-2">Bug Fixes</h3>
2752
-
2753
- <ul>
2754
- <li>Require Liquid 2.5.1 (<a href="https://github.com/jekyll/jekyll/issues/1349">#1349</a>)</li>
2755
- </ul>
2756
-
2757
- <h2 id="v1-1-1">1.1.1 / 2013-07-24</h2>
2758
-
2759
- <h3 id="minor-enhancements-v1-1-1">Minor Enhancements</h3>
2760
-
2761
- <ul>
2762
- <li>Remove superfluous <code class="highlighter-rouge">table</code> selector from main.css in <code class="highlighter-rouge">jekyll new</code> template (<a href="https://github.com/jekyll/jekyll/issues/1328">#1328</a>)</li>
2763
- <li>Abort with non-zero exit codes (<a href="https://github.com/jekyll/jekyll/issues/1338">#1338</a>)</li>
2764
- </ul>
2765
-
2766
- <h3 id="bug-fixes-v1-1-1">Bug Fixes</h3>
2767
-
2768
- <ul>
2769
- <li>Fix up the rendering of excerpts (<a href="https://github.com/jekyll/jekyll/issues/1339">#1339</a>)</li>
2770
- </ul>
2771
-
2772
- <h3 id="site-enhancements-v1-1-1">Site Enhancements</h3>
2773
-
2774
- <ul>
2775
- <li>Add Jekyll Image Tag to the plugins list (<a href="https://github.com/jekyll/jekyll/issues/1306">#1306</a>)</li>
2776
- <li>Remove erroneous statement that <code class="highlighter-rouge">site.pages</code> are sorted alphabetically.</li>
2777
- <li>Add info about the <code class="highlighter-rouge">_drafts</code> directory to the directory structure docs (<a href="https://github.com/jekyll/jekyll/issues/1320">#1320</a>)</li>
2778
- <li>Improve the layout of the plugin listing by organizing it into categories (<a href="https://github.com/jekyll/jekyll/issues/1310">#1310</a>)</li>
2779
- <li>Add generator-jekyllrb and grunt-jekyll to plugins page (<a href="https://github.com/jekyll/jekyll/issues/1330">#1330</a>)</li>
2780
- <li>Mention Kramdown as option for markdown parser on Extras page (<a href="https://github.com/jekyll/jekyll/issues/1318">#1318</a>)</li>
2781
- <li>Update Quick-Start page to include reminder that all requirements must be installed (<a href="https://github.com/jekyll/jekyll/issues/1327">#1327</a>)</li>
2782
- <li>Change filename in <code class="highlighter-rouge">include</code> example to an HTML file so as not to indicate that Jekyll will automatically convert them. (<a href="https://github.com/jekyll/jekyll/issues/1303">#1303</a>)</li>
2783
- <li>Add an RSS feed for commits to Jekyll (<a href="https://github.com/jekyll/jekyll/issues/1343">#1343</a>)</li>
2784
- </ul>
2785
-
2786
- <h2 id="v1-1-0">1.1.0 / 2013-07-14</h2>
2787
-
2788
- <h3 id="major-enhancements-v1-1-0">Major Enhancements</h3>
2789
-
2790
- <ul>
2791
- <li>Add <code class="highlighter-rouge">docs</code> subcommand to read Jekyll’s docs when offline. (<a href="https://github.com/jekyll/jekyll/issues/1046">#1046</a>)</li>
2792
- <li>Support passing parameters to templates in <code class="highlighter-rouge">include</code> tag (<a href="https://github.com/jekyll/jekyll/issues/1204">#1204</a>)</li>
2793
- <li>Add support for Liquid tags to post excerpts (<a href="https://github.com/jekyll/jekyll/issues/1302">#1302</a>)</li>
2794
- </ul>
2795
-
2796
- <h3 id="minor-enhancements-v1-1-0">Minor Enhancements</h3>
2797
-
2798
- <ul>
2799
- <li>Search the hierarchy of pagination path up to site root to determine template page for pagination. (<a href="https://github.com/jekyll/jekyll/issues/1198">#1198</a>)</li>
2800
- <li>Add the ability to generate a new Jekyll site without a template (<a href="https://github.com/jekyll/jekyll/issues/1171">#1171</a>)</li>
2801
- <li>Use redcarpet as the default markdown engine in newly generated sites (<a href="https://github.com/jekyll/jekyll/issues/1245">#1245</a>, <a href="https://github.com/jekyll/jekyll/issues/1247">#1247</a>)</li>
2802
- <li>Add <code class="highlighter-rouge">redcarpet</code> as a runtime dependency so <code class="highlighter-rouge">jekyll build</code> works out-of-the-box for new sites. (<a href="https://github.com/jekyll/jekyll/issues/1247">#1247</a>)</li>
2803
- <li>In the generated site, remove files that will be replaced by a directory (<a href="https://github.com/jekyll/jekyll/issues/1118">#1118</a>)</li>
2804
- <li>Fail loudly if a user-specified configuration file doesn’t exist (<a href="https://github.com/jekyll/jekyll/issues/1098">#1098</a>)</li>
2805
- <li>Allow for all options for Kramdown HTML Converter (<a href="https://github.com/jekyll/jekyll/issues/1201">#1201</a>)</li>
2806
- </ul>
2807
-
2808
- <h3 id="bug-fixes-v1-1-0">Bug Fixes</h3>
2809
-
2810
- <ul>
2811
- <li>Fix pagination in subdirectories. (<a href="https://github.com/jekyll/jekyll/issues/1198">#1198</a>)</li>
2812
- <li>Fix an issue with directories and permalinks that have a plus sign (+) in them (<a href="https://github.com/jekyll/jekyll/issues/1215">#1215</a>)</li>
2813
- <li>Provide better error reporting when generating sites (<a href="https://github.com/jekyll/jekyll/issues/1253">#1253</a>)</li>
2814
- <li>Latest posts first in non-LSI <code class="highlighter-rouge">related_posts</code> (<a href="https://github.com/jekyll/jekyll/issues/1271">#1271</a>)</li>
2815
- </ul>
2816
-
2817
- <h3 id="development-fixes-v1-1-0">Development Fixes</h3>
2818
-
2819
- <ul>
2820
- <li>Merge the theme and layout Cucumber steps into one step (<a href="https://github.com/jekyll/jekyll/issues/1151">#1151</a>)</li>
2821
- <li>Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with <code class="highlighter-rouge">&lt;= 1.9.2</code>
2822
- </li>
2823
- <li>Include/exclude deprecation handling simplification (<a href="https://github.com/jekyll/jekyll/issues/1284">#1284</a>)</li>
2824
- <li>Convert README to Markdown. (<a href="https://github.com/jekyll/jekyll/issues/1267">#1267</a>)</li>
2825
- <li>Refactor Jekyll::Site (<a href="https://github.com/jekyll/jekyll/issues/1144">#1144</a>)</li>
2826
- </ul>
2827
-
2828
- <h3 id="site-enhancements-v1-1-0">Site Enhancements</h3>
2829
-
2830
- <ul>
2831
- <li>Add “News” section for release notes, along with an RSS feed (<a href="https://github.com/jekyll/jekyll/issues/1093">#1093</a>, <a href="https://github.com/jekyll/jekyll/issues/1285">#1285</a>, <a href="https://github.com/jekyll/jekyll/issues/1286">#1286</a>)</li>
2832
- <li>Add “History” page.</li>
2833
- <li>Restructured docs sections to include “Meta” section.</li>
2834
- <li>Add message to “Templates” page that specifies that Python must be installed in order to use Pygments. (<a href="https://github.com/jekyll/jekyll/issues/1182">#1182</a>)</li>
2835
- <li>Update link to the official Maruku repo (<a href="https://github.com/jekyll/jekyll/issues/1175">#1175</a>)</li>
2836
- <li>Add documentation about <code class="highlighter-rouge">paginate_path</code> to “Templates” page in docs (<a href="https://github.com/jekyll/jekyll/issues/1129">#1129</a>)</li>
2837
- <li>Give the quick-start guide its own page (<a href="https://github.com/jekyll/jekyll/issues/1191">#1191</a>)</li>
2838
- <li>Update ProTip on Installation page in docs to point to all the info about Pygments and the ‘highlight’ tag. (<a href="https://github.com/jekyll/jekyll/issues/1196">#1196</a>)</li>
2839
- <li>Run <code class="highlighter-rouge">site/img</code> through ImageOptim (thanks <a href="https://github.com/qrush">@qrush</a>!) (<a href="https://github.com/jekyll/jekyll/issues/1208">#1208</a>)</li>
2840
- <li>Added Jade Converter to <code class="highlighter-rouge">site/docs/plugins</code> (<a href="https://github.com/jekyll/jekyll/issues/1210">#1210</a>)</li>
2841
- <li>Fix location of docs pages in Contributing pages (<a href="https://github.com/jekyll/jekyll/issues/1214">#1214</a>)</li>
2842
- <li>Add ReadInXMinutes plugin to the plugin list (<a href="https://github.com/jekyll/jekyll/issues/1222">#1222</a>)</li>
2843
- <li>Remove plugins from the plugin list that have equivalents in Jekyll proper (<a href="https://github.com/jekyll/jekyll/issues/1223">#1223</a>)</li>
2844
- <li>Add jekyll-assets to the plugin list (<a href="https://github.com/jekyll/jekyll/issues/1225">#1225</a>)</li>
2845
- <li>Add jekyll-pandoc-mulitple-formats to the plugin list (<a href="https://github.com/jekyll/jekyll/issues/1229">#1229</a>)</li>
2846
- <li>Remove dead link to “Using Git to maintain your blog” (<a href="https://github.com/jekyll/jekyll/issues/1227">#1227</a>)</li>
2847
- <li>Tidy up the third-party plugins listing (<a href="https://github.com/jekyll/jekyll/issues/1228">#1228</a>)</li>
2848
- <li>Update contributor information (<a href="https://github.com/jekyll/jekyll/issues/1192">#1192</a>)</li>
2849
- <li>Update URL of article about Blogger migration (<a href="https://github.com/jekyll/jekyll/issues/1242">#1242</a>)</li>
2850
- <li>Specify that RedCarpet is the default for new Jekyll sites on Quickstart page (<a href="https://github.com/jekyll/jekyll/issues/1247">#1247</a>)</li>
2851
- <li>Added <code class="highlighter-rouge">site.pages</code> to Variables page in docs (<a href="https://github.com/jekyll/jekyll/issues/1251">#1251</a>)</li>
2852
- <li>Add Youku and Tudou Embed link on Plugins page. (<a href="https://github.com/jekyll/jekyll/issues/1250">#1250</a>)</li>
2853
- <li>Add note that <code class="highlighter-rouge">gist</code> tag supports private gists. (<a href="https://github.com/jekyll/jekyll/issues/1248">#1248</a>)</li>
2854
- <li>Add <code class="highlighter-rouge">jekyll-timeago</code> to list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/1260">#1260</a>)</li>
2855
- <li>Add <code class="highlighter-rouge">jekyll-swfobject</code> to list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/1263">#1263</a>)</li>
2856
- <li>Add <code class="highlighter-rouge">jekyll-picture-tag</code> to list of third-party plugins. (<a href="https://github.com/jekyll/jekyll/issues/1280">#1280</a>)</li>
2857
- <li>Update the GitHub Pages documentation regarding relative URLs (<a href="https://github.com/jekyll/jekyll/issues/1291">#1291</a>)</li>
2858
- <li>Update the S3 deployment documentation (<a href="https://github.com/jekyll/jekyll/issues/1294">#1294</a>)</li>
2859
- <li>Add suggestion for Xcode CLT install to troubleshooting page in docs (<a href="https://github.com/jekyll/jekyll/issues/1296">#1296</a>)</li>
2860
- <li>Add ‘Working with drafts’ page to docs (<a href="https://github.com/jekyll/jekyll/issues/1289">#1289</a>)</li>
2861
- <li>Add information about time zones to the documentation for a page’s date (<a href="https://github.com/jekyll/jekyll/issues/1304">#1304</a>)</li>
2862
- </ul>
2863
-
2864
- <h2 id="v1-0-3">1.0.3 / 2013-06-07</h2>
2865
-
2866
- <h3 id="minor-enhancements-v1-0-3">Minor Enhancements</h3>
2867
-
2868
- <ul>
2869
- <li>Add support to gist tag for private gists. (<a href="https://github.com/jekyll/jekyll/issues/1189">#1189</a>)</li>
2870
- <li>Fail loudly when Maruku errors out (<a href="https://github.com/jekyll/jekyll/issues/1190">#1190</a>)</li>
2871
- <li>Move the building of related posts into their own class (<a href="https://github.com/jekyll/jekyll/issues/1057">#1057</a>)</li>
2872
- <li>Removed trailing spaces in several places throughout the code (<a href="https://github.com/jekyll/jekyll/issues/1116">#1116</a>)</li>
2873
- <li>Add a <code class="highlighter-rouge">--force</code> option to <code class="highlighter-rouge">jekyll new</code> (<a href="https://github.com/jekyll/jekyll/issues/1115">#1115</a>)</li>
2874
- <li>Convert IDs in the site template to classes (<a href="https://github.com/jekyll/jekyll/issues/1170">#1170</a>)</li>
2875
- </ul>
2876
-
2877
- <h3 id="bug-fixes-v1-0-3">Bug Fixes</h3>
2878
-
2879
- <ul>
2880
- <li>Fix typo in Stevenson constant “ERROR”. (<a href="https://github.com/jekyll/jekyll/issues/1166">#1166</a>)</li>
2881
- <li>Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue (<a href="https://github.com/jekyll/jekyll/issues/1106">#1106</a>)</li>
2882
- <li>Exit with a non-zero exit code when dealing with a Liquid error (<a href="https://github.com/jekyll/jekyll/issues/1121">#1121</a>)</li>
2883
- <li>Make the <code class="highlighter-rouge">exclude</code> and <code class="highlighter-rouge">include</code> options backwards compatible with versions of Jekyll prior to 1.0 (<a href="https://github.com/jekyll/jekyll/issues/1114">#1114</a>)</li>
2884
- <li>Fix pagination on Windows (<a href="https://github.com/jekyll/jekyll/issues/1063">#1063</a>)</li>
2885
- <li>Fix the application of Pygments’ Generic Output style to Go code (<a href="https://github.com/jekyll/jekyll/issues/1156">#1156</a>)</li>
2886
- </ul>
2887
-
2888
- <h3 id="site-enhancements-v1-0-3">Site Enhancements</h3>
2889
-
2890
- <ul>
2891
- <li>Add a Pro Tip to docs about front matter variables being optional (<a href="https://github.com/jekyll/jekyll/issues/1147">#1147</a>)</li>
2892
- <li>Add changelog to site as History page in /docs/ (<a href="https://github.com/jekyll/jekyll/issues/1065">#1065</a>)</li>
2893
- <li>Add note to Upgrading page about new config options in 1.0.x (<a href="https://github.com/jekyll/jekyll/issues/1146">#1146</a>)</li>
2894
- <li>Documentation for <code class="highlighter-rouge">date_to_rfc822</code> and <code class="highlighter-rouge">uri_escape</code> (<a href="https://github.com/jekyll/jekyll/issues/1142">#1142</a>)</li>
2895
- <li>Documentation highlight boxes shouldn’t show scrollbars if not necessary (<a href="https://github.com/jekyll/jekyll/issues/1123">#1123</a>)</li>
2896
- <li>Add link to jekyll-minibundle in the doc’s plugins list (<a href="https://github.com/jekyll/jekyll/issues/1035">#1035</a>)</li>
2897
- <li>Quick patch for importers documentation</li>
2898
- <li>Fix prefix for WordpressDotCom importer in docs (<a href="https://github.com/jekyll/jekyll/issues/1107">#1107</a>)</li>
2899
- <li>Add jekyll-contentblocks plugin to docs (<a href="https://github.com/jekyll/jekyll/issues/1068">#1068</a>)</li>
2900
- <li>Make code bits in notes look more natural, more readable (<a href="https://github.com/jekyll/jekyll/issues/1089">#1089</a>)</li>
2901
- <li>Fix logic for <code class="highlighter-rouge">relative_permalinks</code> instructions on Upgrading page (<a href="https://github.com/jekyll/jekyll/issues/1101">#1101</a>)</li>
2902
- <li>Add docs for post excerpt (<a href="https://github.com/jekyll/jekyll/issues/1072">#1072</a>)</li>
2903
- <li>Add docs for gist tag (<a href="https://github.com/jekyll/jekyll/issues/1072">#1072</a>)</li>
2904
- <li>Add docs indicating that Pygments does not need to be installed separately (<a href="https://github.com/jekyll/jekyll/issues/1099">#1099</a>, <a href="https://github.com/jekyll/jekyll/issues/1119">#1119</a>)</li>
2905
- <li>Update the migrator docs to be current (<a href="https://github.com/jekyll/jekyll/issues/1136">#1136</a>)</li>
2906
- <li>Add the Jekyll Gallery Plugin to the plugin list (<a href="https://github.com/jekyll/jekyll/issues/1143">#1143</a>)</li>
2907
- </ul>
2908
-
2909
- <h3 id="development-fixes-v1-0-3">Development Fixes</h3>
2910
-
2911
- <ul>
2912
- <li>Use Jekyll.logger instead of Jekyll::Stevenson to log things (<a href="https://github.com/jekyll/jekyll/issues/1149">#1149</a>)</li>
2913
- <li>Fix pesky Cucumber infinite loop (<a href="https://github.com/jekyll/jekyll/issues/1139">#1139</a>)</li>
2914
- <li>Do not write posts with timezones in Cucumber tests (<a href="https://github.com/jekyll/jekyll/issues/1124">#1124</a>)</li>
2915
- <li>Use ISO formatted dates in Cucumber features (<a href="https://github.com/jekyll/jekyll/issues/1150">#1150</a>)</li>
2916
- </ul>
2917
-
2918
- <h2 id="v1-0-2">1.0.2 / 2013-05-12</h2>
2919
-
2920
- <h3 id="major-enhancements-v1-0-2">Major Enhancements</h3>
2921
-
2922
- <ul>
2923
- <li>Add <code class="highlighter-rouge">jekyll doctor</code> command to check site for any known compatibility problems (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
2924
- <li>Backwards-compatibilize relative permalinks (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
2925
- </ul>
2926
-
2927
- <h3 id="minor-enhancements-v1-0-2">Minor Enhancements</h3>
2928
-
2929
- <ul>
2930
- <li>Add a <code class="highlighter-rouge">data-lang="&lt;lang&gt;"</code> attribute to Redcarpet code blocks (<a href="https://github.com/jekyll/jekyll/issues/1066">#1066</a>)</li>
2931
- <li>Deprecate old config <code class="highlighter-rouge">server_port</code>, match to <code class="highlighter-rouge">port</code> if <code class="highlighter-rouge">port</code> isn’t set (<a href="https://github.com/jekyll/jekyll/issues/1084">#1084</a>)</li>
2932
- <li>Update pygments.rb version to 0.5.0 (<a href="https://github.com/jekyll/jekyll/issues/1061">#1061</a>)</li>
2933
- <li>Update Kramdown version to 1.0.2 (<a href="https://github.com/jekyll/jekyll/issues/1067">#1067</a>)</li>
2934
- </ul>
2935
-
2936
- <h3 id="bug-fixes-v1-0-2">Bug Fixes</h3>
2937
-
2938
- <ul>
2939
- <li>Fix issue when categories are numbers (<a href="https://github.com/jekyll/jekyll/issues/1078">#1078</a>)</li>
2940
- <li>Catching that Redcarpet gem isn’t installed (<a href="https://github.com/jekyll/jekyll/issues/1059">#1059</a>)</li>
2941
- </ul>
2942
-
2943
- <h3 id="site-enhancements-v1-0-2">Site Enhancements</h3>
2944
-
2945
- <ul>
2946
- <li>Add documentation about <code class="highlighter-rouge">relative_permalinks</code> (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
2947
- <li>Remove pygments-installation instructions, as pygments.rb is bundled with it (<a href="https://github.com/jekyll/jekyll/issues/1079">#1079</a>)</li>
2948
- <li>Move pages to be Pages for realz (<a href="https://github.com/jekyll/jekyll/issues/985">#985</a>)</li>
2949
- <li>Updated links to Liquid documentation (<a href="https://github.com/jekyll/jekyll/issues/1073">#1073</a>)</li>
2950
- </ul>
2951
-
2952
- <h2 id="v1-0-1">1.0.1 / 2013-05-08</h2>
2953
-
2954
- <h3 id="minor-enhancements-v1-0-1">Minor Enhancements</h3>
2955
-
2956
- <ul>
2957
- <li>Do not force use of <code class="highlighter-rouge">toc_token</code> when using <code class="highlighter-rouge">generate_tok</code> in RDiscount (<a href="https://github.com/jekyll/jekyll/issues/1048">#1048</a>)</li>
2958
- <li>Add newer <code class="highlighter-rouge">language-</code> class name prefix to code blocks (<a href="https://github.com/jekyll/jekyll/issues/1037">#1037</a>)</li>
2959
- <li>Commander error message now preferred over process abort with incorrect args (<a href="https://github.com/jekyll/jekyll/issues/1040">#1040</a>)</li>
2960
- </ul>
2961
-
2962
- <h3 id="bug-fixes-v1-0-1">Bug Fixes</h3>
2963
-
2964
- <ul>
2965
- <li>Make Redcarpet respect the pygments configuration option (<a href="https://github.com/jekyll/jekyll/issues/1053">#1053</a>)</li>
2966
- <li>Fix the index build with LSI (<a href="https://github.com/jekyll/jekyll/issues/1045">#1045</a>)</li>
2967
- <li>Don’t print deprecation warning when no arguments are specified. (<a href="https://github.com/jekyll/jekyll/issues/1041">#1041</a>)</li>
2968
- <li>Add missing <code class="highlighter-rouge">&lt;/div&gt;</code> to site template used by <code class="highlighter-rouge">new</code> subcommand, fixed typos in code (<a href="https://github.com/jekyll/jekyll/issues/1032">#1032</a>)</li>
2969
- </ul>
2970
-
2971
- <h3 id="site-enhancements-v1-0-1">Site Enhancements</h3>
2972
-
2973
- <ul>
2974
- <li>Changed https to http in the GitHub Pages link (<a href="https://github.com/jekyll/jekyll/issues/1051">#1051</a>)</li>
2975
- <li>Remove CSS cruft, fix typos, fix HTML errors (<a href="https://github.com/jekyll/jekyll/issues/1028">#1028</a>)</li>
2976
- <li>Removing manual install of Pip and Distribute (<a href="https://github.com/jekyll/jekyll/issues/1025">#1025</a>)</li>
2977
- <li>Updated URL for Markdown references plugin (<a href="https://github.com/jekyll/jekyll/issues/1022">#1022</a>)</li>
2978
- </ul>
2979
-
2980
- <h3 id="development-fixes-v1-0-1">Development Fixes</h3>
2981
-
2982
- <ul>
2983
- <li>Markdownify history file (<a href="https://github.com/jekyll/jekyll/issues/1027">#1027</a>)</li>
2984
- <li>Update links on README to point to new jekyllrb.com (<a href="https://github.com/jekyll/jekyll/issues/1018">#1018</a>)</li>
2985
- </ul>
2986
-
2987
- <h2 id="v1-0-0">1.0.0 / 2013-05-06</h2>
2988
-
2989
- <h3 id="major-enhancements-v1-0-0">Major Enhancements</h3>
2990
-
2991
- <ul>
2992
- <li>Add <code class="highlighter-rouge">jekyll new</code> subcommand: generate a Jekyll scaffold (<a href="https://github.com/jekyll/jekyll/issues/764">#764</a>)</li>
2993
- <li>Refactored Jekyll commands into subcommands: build, serve, and migrate. (<a href="https://github.com/jekyll/jekyll/issues/690">#690</a>)</li>
2994
- <li>Removed importers/migrators from main project, migrated to jekyll-import sub-gem (<a href="https://github.com/jekyll/jekyll/issues/793">#793</a>)</li>
2995
- <li>Added ability to render drafts in <code class="highlighter-rouge">_drafts</code> folder via command line (<a href="https://github.com/jekyll/jekyll/issues/833">#833</a>)</li>
2996
- <li>Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) (<a href="https://github.com/jekyll/jekyll/issues/928">#928</a>)</li>
2997
- </ul>
2998
-
2999
- <h3 id="minor-enhancements-v1-0-0">Minor Enhancements</h3>
3000
-
3001
- <ul>
3002
- <li>Site template HTML5-ified (<a href="https://github.com/jekyll/jekyll/issues/964">#964</a>)</li>
3003
- <li>Use post’s directory path when matching for the <code class="highlighter-rouge">post_url</code> tag (<a href="https://github.com/jekyll/jekyll/issues/998">#998</a>)</li>
3004
- <li>Loosen dependency on Pygments so it’s only required when it’s needed (<a href="https://github.com/jekyll/jekyll/issues/1015">#1015</a>)</li>
3005
- <li>Parse strings into Time objects for date-related Liquid filters (<a href="https://github.com/jekyll/jekyll/issues/1014">#1014</a>)</li>
3006
- <li>Tell the user if there is no subcommand specified (<a href="https://github.com/jekyll/jekyll/issues/1008">#1008</a>)</li>
3007
- <li>Freak out if the destination of <code class="highlighter-rouge">jekyll new</code> exists and is non-empty (<a href="https://github.com/jekyll/jekyll/issues/981">#981</a>)</li>
3008
- <li>Add <code class="highlighter-rouge">timezone</code> configuration option for compilation (<a href="https://github.com/jekyll/jekyll/issues/957">#957</a>)</li>
3009
- <li>Add deprecation messages for pre-1.0 CLI options (<a href="https://github.com/jekyll/jekyll/issues/959">#959</a>)</li>
3010
- <li>Refactor and colorize logging (<a href="https://github.com/jekyll/jekyll/issues/959">#959</a>)</li>
3011
- <li>Refactor Markdown parsing (<a href="https://github.com/jekyll/jekyll/issues/955">#955</a>)</li>
3012
- <li>Added application/vnd.apple.pkpass to mime.types served by WEBrick (<a href="https://github.com/jekyll/jekyll/issues/907">#907</a>)</li>
3013
- <li>Move template site to default markdown renderer (<a href="https://github.com/jekyll/jekyll/issues/961">#961</a>)</li>
3014
- <li>Expose new attribute to Liquid via <code class="highlighter-rouge">page</code>: <code class="highlighter-rouge">page.path</code> (<a href="https://github.com/jekyll/jekyll/issues/951">#951</a>)</li>
3015
- <li>Accept multiple config files from command line (<a href="https://github.com/jekyll/jekyll/issues/945">#945</a>)</li>
3016
- <li>Add page variable to liquid custom tags and blocks (<a href="https://github.com/jekyll/jekyll/issues/413">#413</a>)</li>
3017
- <li>Add <code class="highlighter-rouge">paginator.previous_page_path</code> and <code class="highlighter-rouge">paginator.next_page_path</code> (<a href="https://github.com/jekyll/jekyll/issues/942">#942</a>)</li>
3018
- <li>Backwards compatibility for ‘auto’ (<a href="https://github.com/jekyll/jekyll/issues/821">#821</a>, <a href="https://github.com/jekyll/jekyll/issues/934">#934</a>)</li>
3019
- <li>Added date_to_rfc822 used on RSS feeds (<a href="https://github.com/jekyll/jekyll/issues/892">#892</a>)</li>
3020
- <li>Upgrade version of pygments.rb to 0.4.2 (<a href="https://github.com/jekyll/jekyll/issues/927">#927</a>)</li>
3021
- <li>Added short month (e.g. “Sep”) to permalink style options for posts (<a href="https://github.com/jekyll/jekyll/issues/890">#890</a>)</li>
3022
- <li>Expose site.baseurl to Liquid templates (<a href="https://github.com/jekyll/jekyll/issues/869">#869</a>)</li>
3023
- <li>Adds excerpt attribute to posts which contains first paragraph of content (<a href="https://github.com/jekyll/jekyll/issues/837">#837</a>)</li>
3024
- <li>Accept custom configuration file via CLI (<a href="https://github.com/jekyll/jekyll/issues/863">#863</a>)</li>
3025
- <li>Load in GitHub Pages MIME Types on <code class="highlighter-rouge">jekyll serve</code> (<a href="https://github.com/jekyll/jekyll/issues/847">#847</a>, <a href="https://github.com/jekyll/jekyll/issues/871">#871</a>)</li>
3026
- <li>Improve debugability of error message for a malformed highlight tag (<a href="https://github.com/jekyll/jekyll/issues/785">#785</a>)</li>
3027
- <li>Allow symlinked files in unsafe mode (<a href="https://github.com/jekyll/jekyll/issues/824">#824</a>)</li>
3028
- <li>Add ‘gist’ Liquid tag to core (<a href="https://github.com/jekyll/jekyll/issues/822">#822</a>, <a href="https://github.com/jekyll/jekyll/issues/861">#861</a>)</li>
3029
- <li>New format of Jekyll output (<a href="https://github.com/jekyll/jekyll/issues/795">#795</a>)</li>
3030
- <li>Reinstate <code class="highlighter-rouge">--limit_posts</code> and <code class="highlighter-rouge">--future</code> switches (<a href="https://github.com/jekyll/jekyll/issues/788">#788</a>)</li>
3031
- <li>Remove ambiguity from command descriptions (<a href="https://github.com/jekyll/jekyll/issues/815">#815</a>)</li>
3032
- <li>Fix SafeYAML Warnings (<a href="https://github.com/jekyll/jekyll/issues/807">#807</a>)</li>
3033
- <li>Relaxed Kramdown version to 0.14 (<a href="https://github.com/jekyll/jekyll/issues/808">#808</a>)</li>
3034
- <li>Aliased <code class="highlighter-rouge">jekyll server</code> to <code class="highlighter-rouge">jekyll serve</code>. (<a href="https://github.com/jekyll/jekyll/issues/792">#792</a>)</li>
3035
- <li>Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. (<a href="https://github.com/jekyll/jekyll/issues/744">#744</a>)</li>
3036
- <li>Refactored Jekyll subcommands into Jekyll::Commands submodule, which now contains them (<a href="https://github.com/jekyll/jekyll/issues/768">#768</a>)</li>
3037
- <li>Rescue from import errors in Wordpress.com migrator (<a href="https://github.com/jekyll/jekyll/issues/671">#671</a>)</li>
3038
- <li>Massively accelerate LSI performance (<a href="https://github.com/jekyll/jekyll/issues/664">#664</a>)</li>
3039
- <li>Truncate post slugs when importing from Tumblr (<a href="https://github.com/jekyll/jekyll/issues/496">#496</a>)</li>
3040
- <li>Add glob support to include, exclude option (<a href="https://github.com/jekyll/jekyll/issues/743">#743</a>)</li>
3041
- <li>Layout of Page or Post defaults to ‘page’ or ‘post’, respectively (<a href="https://github.com/jekyll/jekyll/issues/580">#580</a>) REPEALED by (<a href="https://github.com/jekyll/jekyll/issues/977">#977</a>)</li>
3042
- <li>“Keep files” feature (<a href="https://github.com/jekyll/jekyll/issues/685">#685</a>)</li>
3043
- <li>Output full path &amp; name for files that don’t parse (<a href="https://github.com/jekyll/jekyll/issues/745">#745</a>)</li>
3044
- <li>Add source and destination directory protection (<a href="https://github.com/jekyll/jekyll/issues/535">#535</a>)</li>
3045
- <li>Better YAML error message (<a href="https://github.com/jekyll/jekyll/issues/718">#718</a>)</li>
3046
- <li>Bug Fixes</li>
3047
- <li>Paginate in subdirectories properly (<a href="https://github.com/jekyll/jekyll/issues/1016">#1016</a>)</li>
3048
- <li>Ensure post and page URLs have a leading slash (<a href="https://github.com/jekyll/jekyll/issues/992">#992</a>)</li>
3049
- <li>Catch all exceptions, not just StandardError descendents (<a href="https://github.com/jekyll/jekyll/issues/1007">#1007</a>)</li>
3050
- <li>Bullet-proof <code class="highlighter-rouge">limit_posts</code> option (<a href="https://github.com/jekyll/jekyll/issues/1004">#1004</a>)</li>
3051
- <li>Read in YAML as UTF-8 to accept non-ASCII chars (<a href="https://github.com/jekyll/jekyll/issues/836">#836</a>)</li>
3052
- <li>Fix the CLI option <code class="highlighter-rouge">--plugins</code> to actually accept dirs and files (<a href="https://github.com/jekyll/jekyll/issues/993">#993</a>)</li>
3053
- <li>Allow ‘excerpt’ in YAML front matter to override the extracted excerpt (<a href="https://github.com/jekyll/jekyll/issues/946">#946</a>)</li>
3054
- <li>Fix cascade problem with site.baseurl, site.port and site.host. (<a href="https://github.com/jekyll/jekyll/issues/935">#935</a>)</li>
3055
- <li>Filter out directories with valid post names (<a href="https://github.com/jekyll/jekyll/issues/875">#875</a>)</li>
3056
- <li>Fix symlinked static files not being correctly built in unsafe mode (<a href="https://github.com/jekyll/jekyll/issues/909">#909</a>)</li>
3057
- <li>Fix integration with directory_watcher 1.4.x (<a href="https://github.com/jekyll/jekyll/issues/916">#916</a>)</li>
3058
- <li>Accepting strings as arguments to jekyll-import command (<a href="https://github.com/jekyll/jekyll/issues/910">#910</a>)</li>
3059
- <li>Force usage of older directory_watcher gem as 1.5 is broken (<a href="https://github.com/jekyll/jekyll/issues/883">#883</a>)</li>
3060
- <li>Ensure all Post categories are downcase (<a href="https://github.com/jekyll/jekyll/issues/842">#842</a>, <a href="https://github.com/jekyll/jekyll/issues/872">#872</a>)</li>
3061
- <li>Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors (<a href="https://github.com/jekyll/jekyll/issues/555">#555</a>)</li>
3062
- <li>Patch for multibyte URI problem with <code class="highlighter-rouge">jekyll serve</code> (<a href="https://github.com/jekyll/jekyll/issues/723">#723</a>)</li>
3063
- <li>Order plugin execution by priority (<a href="https://github.com/jekyll/jekyll/issues/864">#864</a>)</li>
3064
- <li>Fixed Page#dir and Page#url for edge cases (<a href="https://github.com/jekyll/jekyll/issues/536">#536</a>)</li>
3065
- <li>Fix broken <code class="highlighter-rouge">post_url</code> with posts with a time in their YAML front matter (<a href="https://github.com/jekyll/jekyll/issues/831">#831</a>)</li>
3066
- <li>Look for plugins under the source directory (<a href="https://github.com/jekyll/jekyll/issues/654">#654</a>)</li>
3067
- <li>Tumblr Migrator: finds <code class="highlighter-rouge">_posts</code> dir correctly, fixes truncation of long post names (<a href="https://github.com/jekyll/jekyll/issues/775">#775</a>)</li>
3068
- <li>Force Categories to be Strings (<a href="https://github.com/jekyll/jekyll/issues/767">#767</a>)</li>
3069
- <li>Safe YAML plugin to prevent vulnerability (<a href="https://github.com/jekyll/jekyll/issues/777">#777</a>)</li>
3070
- <li>Add SVG support to Jekyll/WEBrick. (<a href="https://github.com/jekyll/jekyll/issues/407">#407</a>, <a href="https://github.com/jekyll/jekyll/issues/406">#406</a>)</li>
3071
- <li>Prevent custom destination from causing continuous regen on watch (<a href="https://github.com/jekyll/jekyll/issues/528">#528</a>, <a href="https://github.com/jekyll/jekyll/issues/820">#820</a>, <a href="https://github.com/jekyll/jekyll/issues/862">#862</a>)</li>
3072
- </ul>
3073
-
3074
- <h3 id="site-enhancements-v1-0-0">Site Enhancements</h3>
3075
-
3076
- <ul>
3077
- <li>Responsify (<a href="https://github.com/jekyll/jekyll/issues/860">#860</a>)</li>
3078
- <li>Fix spelling, punctuation and phrasal errors (<a href="https://github.com/jekyll/jekyll/issues/989">#989</a>)</li>
3079
- <li>Update quickstart instructions with <code class="highlighter-rouge">new</code> command (<a href="https://github.com/jekyll/jekyll/issues/966">#966</a>)</li>
3080
- <li>Add docs for page.excerpt (<a href="https://github.com/jekyll/jekyll/issues/956">#956</a>)</li>
3081
- <li>Add docs for page.path (<a href="https://github.com/jekyll/jekyll/issues/951">#951</a>)</li>
3082
- <li>Clean up site docs to prepare for 1.0 release (<a href="https://github.com/jekyll/jekyll/issues/918">#918</a>)</li>
3083
- <li>Bring site into master branch with better preview/deploy (<a href="https://github.com/jekyll/jekyll/issues/709">#709</a>)</li>
3084
- <li>Redesigned site (<a href="https://github.com/jekyll/jekyll/issues/583">#583</a>)</li>
3085
- </ul>
3086
-
3087
- <h3 id="development-fixes-v1-0-0">Development Fixes</h3>
3088
-
3089
- <ul>
3090
- <li>Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 (<a href="https://github.com/jekyll/jekyll/issues/938">#938</a>)</li>
3091
- <li>Added “features:html” rake task for debugging purposes, cleaned up Cucumber profiles (<a href="https://github.com/jekyll/jekyll/issues/832">#832</a>)</li>
3092
- <li>Explicitly require HTTPS rubygems source in Gemfile (<a href="https://github.com/jekyll/jekyll/issues/826">#826</a>)</li>
3093
- <li>Changed Ruby version for development to 1.9.3-p374 from p362 (<a href="https://github.com/jekyll/jekyll/issues/801">#801</a>)</li>
3094
- <li>Including a link to the GitHub Ruby style guide in CONTRIBUTING.md (<a href="https://github.com/jekyll/jekyll/issues/806">#806</a>)</li>
3095
- <li>Added script/bootstrap (<a href="https://github.com/jekyll/jekyll/issues/776">#776</a>)</li>
3096
- <li>Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version of greater than 1.9 (<a href="https://github.com/jekyll/jekyll/issues/771">#771</a>)</li>
3097
- <li>Switch to Simplecov for coverage report (<a href="https://github.com/jekyll/jekyll/issues/765">#765</a>)</li>
3098
- </ul>
3099
-
3100
- <h2 id="v0-12-1">0.12.1 / 2013-02-19</h2>
3101
-
3102
- <h3 id="minor-enhancements-v0-12-1">Minor Enhancements</h3>
3103
-
3104
- <ul>
3105
- <li>Update Kramdown version to 0.14.1 (<a href="https://github.com/jekyll/jekyll/issues/744">#744</a>)</li>
3106
- <li>Test Enhancements</li>
3107
- <li>Update Rake version to 10.0.3 (<a href="https://github.com/jekyll/jekyll/issues/744">#744</a>)</li>
3108
- <li>Update Shoulda version to 3.3.2 (<a href="https://github.com/jekyll/jekyll/issues/744">#744</a>)</li>
3109
- <li>Update Redcarpet version to 2.2.2 (<a href="https://github.com/jekyll/jekyll/issues/744">#744</a>)</li>
3110
- </ul>
3111
-
3112
- <h2 id="v0-12-0">0.12.0 / 2012-12-22</h2>
3113
-
3114
- <h3 id="minor-enhancements-v0-12-0">Minor Enhancements</h3>
3115
-
3116
- <ul>
3117
- <li>Add ability to explicitly specify included files (<a href="https://github.com/jekyll/jekyll/issues/261">#261</a>)</li>
3118
- <li>Add <code class="highlighter-rouge">--default-mimetype</code> option (<a href="https://github.com/jekyll/jekyll/issues/279">#279</a>)</li>
3119
- <li>Allow setting of RedCloth options (<a href="https://github.com/jekyll/jekyll/issues/284">#284</a>)</li>
3120
- <li>Add <code class="highlighter-rouge">post_url</code> Liquid tag for internal post linking (<a href="https://github.com/jekyll/jekyll/issues/369">#369</a>)</li>
3121
- <li>Allow multiple plugin dirs to be specified (<a href="https://github.com/jekyll/jekyll/issues/438">#438</a>)</li>
3122
- <li>Inline TOC token support for RDiscount (<a href="https://github.com/jekyll/jekyll/issues/333">#333</a>)</li>
3123
- <li>Add the option to specify the paginated url format (<a href="https://github.com/jekyll/jekyll/issues/342">#342</a>)</li>
3124
- <li>Swap out albino for pygments.rb (<a href="https://github.com/jekyll/jekyll/issues/569">#569</a>)</li>
3125
- <li>Support Redcarpet 2 and fenced code blocks (<a href="https://github.com/jekyll/jekyll/issues/619">#619</a>)</li>
3126
- <li>Better reporting of Liquid errors (<a href="https://github.com/jekyll/jekyll/issues/624">#624</a>)</li>
3127
- <li>Bug Fixes</li>
3128
- <li>Allow some special characters in highlight names</li>
3129
- <li>URL escape category names in URL generation (<a href="https://github.com/jekyll/jekyll/issues/360">#360</a>)</li>
3130
- <li>Fix error with <code class="highlighter-rouge">limit_posts</code> (<a href="https://github.com/jekyll/jekyll/issues/442">#442</a>)</li>
3131
- <li>Properly select dotfile during directory scan (<a href="https://github.com/jekyll/jekyll/issues/363">#363</a>, <a href="https://github.com/jekyll/jekyll/issues/431">#431</a>, <a href="https://github.com/jekyll/jekyll/issues/377">#377</a>)</li>
3132
- <li>Allow setting of Kramdown <code class="highlighter-rouge">smart_quotes</code> (<a href="https://github.com/jekyll/jekyll/issues/482">#482</a>)</li>
3133
- <li>Ensure front matter is at start of file (<a href="https://github.com/jekyll/jekyll/issues/562">#562</a>)</li>
3134
- </ul>
3135
-
3136
- <h2 id="v0-11-2">0.11.2 / 2011-12-27</h2>
3137
-
3138
- <ul>
3139
- <li>Bug Fixes</li>
3140
- <li>Fix gemspec</li>
3141
- </ul>
3142
-
3143
- <h2 id="v0-11-1">0.11.1 / 2011-12-27</h2>
3144
-
3145
- <ul>
3146
- <li>Bug Fixes</li>
3147
- <li>Fix extra blank line in highlight blocks (<a href="https://github.com/jekyll/jekyll/issues/409">#409</a>)</li>
3148
- <li>Update dependencies</li>
3149
- </ul>
3150
-
3151
- <h2 id="v0-11-0">0.11.0 / 2011-07-10</h2>
3152
-
3153
- <h3 id="major-enhancements-v0-11-0">Major Enhancements</h3>
3154
-
3155
- <ul>
3156
- <li>Add command line importer functionality (<a href="https://github.com/jekyll/jekyll/issues/253">#253</a>)</li>
3157
- <li>Add Redcarpet Markdown support (<a href="https://github.com/jekyll/jekyll/issues/318">#318</a>)</li>
3158
- <li>Make markdown/textile extensions configurable (<a href="https://github.com/jekyll/jekyll/issues/312">#312</a>)</li>
3159
- <li>Add <code class="highlighter-rouge">markdownify</code> filter</li>
3160
- </ul>
3161
-
3162
- <h3 id="minor-enhancements-v0-11-0">Minor Enhancements</h3>
3163
-
3164
- <ul>
3165
- <li>Switch to Albino gem</li>
3166
- <li>Bundler support</li>
3167
- <li>Use English library to avoid hoops (<a href="https://github.com/jekyll/jekyll/issues/292">#292</a>)</li>
3168
- <li>Add Posterous importer (<a href="https://github.com/jekyll/jekyll/issues/254">#254</a>)</li>
3169
- <li>Fixes for Wordpress importer (<a href="https://github.com/jekyll/jekyll/issues/274">#274</a>, <a href="https://github.com/jekyll/jekyll/issues/252">#252</a>, <a href="https://github.com/jekyll/jekyll/issues/271">#271</a>)</li>
3170
- <li>Better error message for invalid post date (<a href="https://github.com/jekyll/jekyll/issues/291">#291</a>)</li>
3171
- <li>Print formatted fatal exceptions to stdout on build failure</li>
3172
- <li>Add Tumblr importer (<a href="https://github.com/jekyll/jekyll/issues/323">#323</a>)</li>
3173
- <li>Add Enki importer (<a href="https://github.com/jekyll/jekyll/issues/320">#320</a>)</li>
3174
- <li>Bug Fixes</li>
3175
- <li>Secure additional path exploits</li>
3176
- </ul>
3177
-
3178
- <h2 id="v0-10-0">0.10.0 / 2010-12-16</h2>
3179
-
3180
- <ul>
3181
- <li>Bug Fixes</li>
3182
- <li>Add <code class="highlighter-rouge">--no-server</code> option.</li>
3183
- </ul>
3184
-
3185
- <h2 id="v0-9-0">0.9.0 / 2010-12-15</h2>
3186
-
3187
- <h3 id="minor-enhancements-v0-9-0">Minor Enhancements</h3>
3188
-
3189
- <ul>
3190
- <li>Use OptionParser’s <code class="highlighter-rouge">[no-]</code> functionality for better boolean parsing.</li>
3191
- <li>Add Drupal migrator (<a href="https://github.com/jekyll/jekyll/issues/245">#245</a>)</li>
3192
- <li>Complain about YAML and Liquid errors (<a href="https://github.com/jekyll/jekyll/issues/249">#249</a>)</li>
3193
- <li>Remove orphaned files during regeneration (<a href="https://github.com/jekyll/jekyll/issues/247">#247</a>)</li>
3194
- <li>Add Marley migrator (<a href="https://github.com/jekyll/jekyll/issues/28">#28</a>)</li>
3195
- </ul>
3196
-
3197
- <h2 id="v0-8-0">0.8.0 / 2010-11-22</h2>
3198
-
3199
- <h3 id="minor-enhancements-v0-8-0">Minor Enhancements</h3>
3200
-
3201
- <ul>
3202
- <li>Add wordpress.com importer (<a href="https://github.com/jekyll/jekyll/issues/207">#207</a>)</li>
3203
- <li>Add <code class="highlighter-rouge">--limit-posts</code> cli option (<a href="https://github.com/jekyll/jekyll/issues/212">#212</a>)</li>
3204
- <li>Add <code class="highlighter-rouge">uri_escape</code> filter (<a href="https://github.com/jekyll/jekyll/issues/234">#234</a>)</li>
3205
- <li>Add <code class="highlighter-rouge">--base-url</code> cli option (<a href="https://github.com/jekyll/jekyll/issues/235">#235</a>)</li>
3206
- <li>Improve MT migrator (<a href="https://github.com/jekyll/jekyll/issues/238">#238</a>)</li>
3207
- <li>Add kramdown support (<a href="https://github.com/jekyll/jekyll/issues/239">#239</a>)</li>
3208
- <li>Bug Fixes</li>
3209
- <li>Fixed filename basename generation (<a href="https://github.com/jekyll/jekyll/issues/208">#208</a>)</li>
3210
- <li>Set mode to UTF8 on Sequel connections (<a href="https://github.com/jekyll/jekyll/issues/237">#237</a>)</li>
3211
- <li>Prevent <code class="highlighter-rouge">_includes</code> dir from being a symlink</li>
3212
- </ul>
3213
-
3214
- <h2 id="v0-7-0">0.7.0 / 2010-08-24</h2>
3215
-
3216
- <h3 id="minor-enhancements-v0-7-0">Minor Enhancements</h3>
3217
-
3218
- <ul>
3219
- <li>Add support for rdiscount extensions (<a href="https://github.com/jekyll/jekyll/issues/173">#173</a>)</li>
3220
- <li>Bug Fixes</li>
3221
- <li>Highlight should not be able to render local files</li>
3222
- <li>The site configuration may not always provide a ‘time’ setting (<a href="https://github.com/jekyll/jekyll/issues/184">#184</a>)</li>
3223
- </ul>
3224
-
3225
- <h2 id="v0-6-2">0.6.2 / 2010-06-25</h2>
3226
-
3227
- <ul>
3228
- <li>Bug Fixes</li>
3229
- <li>Fix Rakefile ‘release’ task (tag pushing was missing origin)</li>
3230
- <li>Ensure that RedCloth is loaded when textilize filter is used (<a href="https://github.com/jekyll/jekyll/issues/183">#183</a>)</li>
3231
- <li>Expand source, destination, and plugin paths (<a href="https://github.com/jekyll/jekyll/issues/180">#180</a>)</li>
3232
- <li>Fix <code class="highlighter-rouge">page.url</code> to include full relative path (<a href="https://github.com/jekyll/jekyll/issues/181">#181</a>)</li>
3233
- </ul>
3234
-
3235
- <h2 id="v0-6-1">0.6.1 / 2010-06-24</h2>
3236
-
3237
- <ul>
3238
- <li>Bug Fixes</li>
3239
- <li>Fix Markdown Pygments prefix and suffix (<a href="https://github.com/jekyll/jekyll/issues/178">#178</a>)</li>
3240
- </ul>
3241
-
3242
- <h2 id="v0-6-0">0.6.0 / 2010-06-23</h2>
3243
-
3244
- <h3 id="major-enhancements-v0-6-0">Major Enhancements</h3>
3245
-
3246
- <ul>
3247
- <li>Proper plugin system (<a href="https://github.com/jekyll/jekyll/issues/19">#19</a>, <a href="https://github.com/jekyll/jekyll/issues/100">#100</a>)</li>
3248
- <li>Add safe mode so unsafe converters/generators can be added</li>
3249
- <li>Maruku is now the only processor dependency installed by default. Other processors will be lazy-loaded when necessary (and prompt the user to install them when necessary) (<a href="https://github.com/jekyll/jekyll/issues/57">#57</a>)</li>
3250
- </ul>
3251
-
3252
- <h3 id="minor-enhancements-v0-6-0">Minor Enhancements</h3>
3253
-
3254
- <ul>
3255
- <li>Inclusion/exclusion of future dated posts (<a href="https://github.com/jekyll/jekyll/issues/59">#59</a>)</li>
3256
- <li>Generation for a specific time (<a href="https://github.com/jekyll/jekyll/issues/59">#59</a>)</li>
3257
- <li>Allocate <code class="highlighter-rouge">site.time</code> on render not per site_payload invocation (<a href="https://github.com/jekyll/jekyll/issues/59">#59</a>)</li>
3258
- <li>Pages now present in the site payload and can be used through the <code class="highlighter-rouge">site.pages</code> and <code class="highlighter-rouge">site.html_pages</code> variables</li>
3259
- <li>Generate phase added to site#process and pagination is now a generator</li>
3260
- <li>Switch to RakeGem for build/test process</li>
3261
- <li>Only regenerate static files when they have changed (<a href="https://github.com/jekyll/jekyll/issues/142">#142</a>)</li>
3262
- <li>Allow arbitrary options to Pygments (<a href="https://github.com/jekyll/jekyll/issues/31">#31</a>)</li>
3263
- <li>Allow URL to be set via command line option (<a href="https://github.com/jekyll/jekyll/issues/147">#147</a>)</li>
3264
- <li>Bug Fixes</li>
3265
- <li>Render highlighted code for non markdown/textile pages (<a href="https://github.com/jekyll/jekyll/issues/116">#116</a>)</li>
3266
- <li>Fix highlighting on Ruby 1.9 (<a href="https://github.com/jekyll/jekyll/issues/65">#65</a>)</li>
3267
- <li>Fix extension munging when pretty permalinks are enabled (<a href="https://github.com/jekyll/jekyll/issues/64">#64</a>)</li>
3268
- <li>Stop sorting categories (<a href="https://github.com/jekyll/jekyll/issues/33">#33</a>)</li>
3269
- <li>Preserve generated attributes over front matter (<a href="https://github.com/jekyll/jekyll/issues/119">#119</a>)</li>
3270
- <li>Fix source directory binding using <code class="highlighter-rouge">Dir.pwd</code> (<a href="https://github.com/jekyll/jekyll/issues/75">#75</a>)</li>
3271
- </ul>
3272
-
3273
- <h2 id="v0-5-7">0.5.7 / 2010-01-12</h2>
3274
-
3275
- <h3 id="minor-enhancements-v0-5-7">Minor Enhancements</h3>
3276
-
3277
- <ul>
3278
- <li>Allow overriding of post date in the front matter (<a href="https://github.com/jekyll/jekyll/issues/62">#62</a>, <a href="https://github.com/jekyll/jekyll/issues/38">#38</a>)</li>
3279
- <li>Bug Fixes</li>
3280
- <li>Categories isn’t always an array (<a href="https://github.com/jekyll/jekyll/issues/73">#73</a>)</li>
3281
- <li>Empty tags causes error in read_posts (<a href="https://github.com/jekyll/jekyll/issues/84">#84</a>)</li>
3282
- <li>Fix pagination to adhere to read/render/write paradigm</li>
3283
- <li>Test Enhancement</li>
3284
- <li>Cucumber features no longer use site.posts.first where a better alternative is available</li>
3285
- </ul>
3286
-
3287
- <h2 id="v0-5-6">0.5.6 / 2010-01-08</h2>
3288
-
3289
- <ul>
3290
- <li>Bug Fixes</li>
3291
- <li>Require redcloth &gt;= 4.2.1 in tests (<a href="https://github.com/jekyll/jekyll/issues/92">#92</a>)</li>
3292
- <li>Don’t break on triple dashes in yaml front matter (<a href="https://github.com/jekyll/jekyll/issues/93">#93</a>)</li>
3293
- </ul>
3294
-
3295
- <h3 id="minor-enhancements-v0-5-6">Minor Enhancements</h3>
3296
-
3297
- <ul>
3298
- <li>Allow .mkd as markdown extension</li>
3299
- <li>Use $stdout/err instead of constants (<a href="https://github.com/jekyll/jekyll/issues/99">#99</a>)</li>
3300
- <li>Properly wrap code blocks (<a href="https://github.com/jekyll/jekyll/issues/91">#91</a>)</li>
3301
- <li>Add javascript mime type for webrick (<a href="https://github.com/jekyll/jekyll/issues/98">#98</a>)</li>
3302
- </ul>
3303
-
3304
- <h2 id="v0-5-5">0.5.5 / 2010-01-08</h2>
3305
-
3306
- <ul>
3307
- <li>Bug Fixes</li>
3308
- <li>Fix pagination % 0 bug (<a href="https://github.com/jekyll/jekyll/issues/78">#78</a>)</li>
3309
- <li>Ensure all posts are processed first (<a href="https://github.com/jekyll/jekyll/issues/71">#71</a>)</li>
3310
- <li>After this point I will no longer be giving credit in the history; that is what the commit log is for.</li>
3311
- </ul>
3312
-
3313
- <h2 id="v0-5-4">0.5.4 / 2009-08-23</h2>
3314
-
3315
- <ul>
3316
- <li>Bug Fixes</li>
3317
- <li>Do not allow symlinks (security vulnerability)</li>
3318
- </ul>
3319
-
3320
- <h2 id="v0-5-3">0.5.3 / 2009-07-14</h2>
3321
-
3322
- <ul>
3323
- <li>Bug Fixes</li>
3324
- <li>Solving the permalink bug where non-html files wouldn’t work (<a href="https://github.com/jeffrydegrande">@jeffrydegrande</a>)</li>
3325
- </ul>
3326
-
3327
- <h2 id="v0-5-2">0.5.2 / 2009-06-24</h2>
3328
-
3329
- <ul>
3330
- <li>Enhancements</li>
3331
- <li>Added –paginate option to the executable along with a paginator object for the payload (<a href="https://github.com/calavera">@calavera</a>)</li>
3332
- <li>Upgraded RedCloth to 4.2.1, which makes <code class="highlighter-rouge">&lt;notextile&gt;</code> tags work once again.</li>
3333
- <li>Configuration options set in config.yml are now available through the site payload (<a href="https://github.com/vilcans">@vilcans</a>)</li>
3334
- <li>Posts can now have an empty YAML front matter or none at all (@ bahuvrihi)</li>
3335
- <li>Bug Fixes</li>
3336
- <li>Fixing Ruby 1.9 issue that requires <code class="highlighter-rouge">#to_s</code> on the err object (<a href="https://github.com/Chrononaut">@Chrononaut</a>)</li>
3337
- <li>Fixes for pagination and ordering posts on the same day (<a href="https://github.com/ujh">@ujh</a>)</li>
3338
- <li>Made pages respect permalinks style and permalinks in yml front matter (<a href="https://github.com/eugenebolshakov">@eugenebolshakov</a>)</li>
3339
- <li>Index.html file should always have index.html permalink (<a href="https://github.com/eugenebolshakov">@eugenebolshakov</a>)</li>
3340
- <li>Added trailing slash to pretty permalink style so Apache is happy (<a href="https://github.com/eugenebolshakov">@eugenebolshakov</a>)</li>
3341
- <li>Bad markdown processor in config fails sooner and with better message (@ gcnovus)</li>
3342
- <li>Allow CRLFs in yaml front matter (<a href="https://github.com/juretta">@juretta</a>)</li>
3343
- <li>Added Date#xmlschema for Ruby versions &lt; 1.9</li>
3344
- </ul>
3345
-
3346
- <h2 id="v0-5-1">0.5.1 / 2009-05-06</h2>
3347
-
3348
- <h3 id="major-enhancements-v0-5-1">Major Enhancements</h3>
3349
-
3350
- <ul>
3351
- <li>Next/previous posts in site payload (<a href="https://github.com/pantulis">@pantulis</a>, <a href="https://github.com/tomo">@tomo</a>)</li>
3352
- <li>Permalink templating system</li>
3353
- <li>Moved most of the README out to the GitHub wiki</li>
3354
- <li>Exclude option in configuration so specified files won’t be brought over with generated site (<a href="https://github.com/duritong">@duritong</a>)</li>
3355
- <li>Bug Fixes</li>
3356
- <li>Making sure config.yaml references are all gone, using only config.yml</li>
3357
- <li>Fixed syntax highlighting breaking for UTF-8 code (<a href="https://github.com/henrik">@henrik</a>)</li>
3358
- <li>Worked around RDiscount bug that prevents Markdown from getting parsed after highlight (<a href="https://github.com/henrik">@henrik</a>)</li>
3359
- <li>CGI escaped post titles (<a href="https://github.com/Chrononaut">@Chrononaut</a>)</li>
3360
- </ul>
3361
-
3362
- <h2 id="v0-5-0">0.5.0 / 2009-04-07</h2>
3363
-
3364
- <h3 id="minor-enhancements-v0-5-0">Minor Enhancements</h3>
3365
-
3366
- <ul>
3367
- <li>Ability to set post categories via YAML (<a href="https://github.com/qrush">@qrush</a>)</li>
3368
- <li>Ability to set prevent a post from publishing via YAML (<a href="https://github.com/qrush">@qrush</a>)</li>
3369
- <li>Add textilize filter (<a href="https://github.com/willcodeforfoo">@willcodeforfoo</a>)</li>
3370
- <li>Add ‘pretty’ permalink style for wordpress-like urls (<a href="https://github.com/dysinger">@dysinger</a>)</li>
3371
- <li>Made it possible to enter categories from YAML as an array (<a href="https://github.com/Chrononaut">@Chrononaut</a>)</li>
3372
- <li>Ignore Emacs autosave files (<a href="https://github.com/Chrononaut">@Chrononaut</a>)</li>
3373
- <li>Bug Fixes</li>
3374
- <li>Use block syntax of popen4 to ensure that subprocesses are properly disposed (<a href="https://github.com/jqr">@jqr</a>)</li>
3375
- <li>Close open4 streams to prevent zombies (<a href="https://github.com/rtomayko">@rtomayko</a>)</li>
3376
- <li>Only query required fields from the WP Database (<a href="https://github.com/ariejan">@ariejan</a>)</li>
3377
- <li>Prevent <code class="highlighter-rouge">_posts</code> from being copied to the destination directory (<a href="https://github.com/bdimcheff">@bdimcheff</a>)</li>
3378
- <li>Refactors</li>
3379
- <li>Factored the filtering code into a method (<a href="https://github.com/Chrononaut">@Chrononaut</a>)</li>
3380
- <li>Fix tests and convert to Shoulda (<a href="https://github.com/qrush">@qrush</a>, <a href="https://github.com/technicalpickles">@technicalpickles</a>)</li>
3381
- <li>Add Cucumber acceptance test suite (<a href="https://github.com/qrush">@qrush</a>, <a href="https://github.com/technicalpickles">@technicalpickles</a>)</li>
3382
- </ul>
3383
-
3384
- <h2 id="041">0.4.1</h2>
3385
-
3386
- <h3 id="minor-enhancements-v--">Minor Enhancements</h3>
3387
-
3388
- <ul>
3389
- <li>Changed date format on wordpress converter (zeropadding) (<a href="https://github.com/dysinger">@dysinger</a>)</li>
3390
- <li>Bug Fixes</li>
3391
- <li>Add Jekyll binary as executable to gemspec (<a href="https://github.com/dysinger">@dysinger</a>)</li>
3392
- </ul>
3393
-
3394
- <h2 id="v0-4-0">0.4.0 / 2009-02-03</h2>
3395
-
3396
- <h3 id="major-enhancements-v0-4-0">Major Enhancements</h3>
3397
-
3398
- <ul>
3399
- <li>Switch to Jeweler for packaging tasks</li>
3400
- </ul>
3401
-
3402
- <h3 id="minor-enhancements-v0-4-0">Minor Enhancements</h3>
3403
-
3404
- <ul>
3405
- <li>Type importer (<a href="https://github.com/codeslinger">@codeslinger</a>)</li>
3406
- <li>
3407
- <code class="highlighter-rouge">site.topics</code> accessor (<a href="https://github.com/baz">@baz</a>)</li>
3408
- <li>Add <code class="highlighter-rouge">array_to_sentence_string</code> filter (<a href="https://github.com/mchung">@mchung</a>)</li>
3409
- <li>Add a converter for textpattern (<a href="https://github.com/PerfectlyNormal">@PerfectlyNormal</a>)</li>
3410
- <li>Add a working Mephisto / MySQL converter (<a href="https://github.com/ivey">@ivey</a>)</li>
3411
- <li>Allowing .htaccess files to be copied over into the generated site (<a href="https://github.com/briandoll">@briandoll</a>)</li>
3412
- <li>Add option to not put file date in permalink URL (<a href="https://github.com/mreid">@mreid</a>)</li>
3413
- <li>Add line number capabilities to highlight blocks (<a href="https://github.com/jcon">@jcon</a>)</li>
3414
- <li>Bug Fixes</li>
3415
- <li>Fix permalink behavior (<a href="https://github.com/cavalle">@cavalle</a>)</li>
3416
- <li>Fixed an issue with pygments, markdown, and newlines (<a href="https://github.com/zpinter">@zpinter</a>)</li>
3417
- <li>Ampersands need to be escaped (<a href="https://github.com/pufuwozu">@pufuwozu</a>, <a href="https://github.com/ap">@ap</a>)</li>
3418
- <li>Test and fix the site.categories hash (<a href="https://github.com/zzot">@zzot</a>)</li>
3419
- <li>Fix site payload available to files (<a href="https://github.com/matrix9180">@matrix9180</a>)</li>
3420
- </ul>
3421
-
3422
- <h2 id="v0-3-0">0.3.0 / 2008-12-24</h2>
3423
-
3424
- <h3 id="major-enhancements-v0-3-0">Major Enhancements</h3>
3425
-
3426
- <ul>
3427
- <li>Added <code class="highlighter-rouge">--server</code> option to start a simple WEBrick server on destination directory (<a href="https://github.com/johnreilly">@johnreilly</a> and <a href="https://github.com/mchung">@mchung</a>)</li>
3428
- </ul>
3429
-
3430
- <h3 id="minor-enhancements-v0-3-0">Minor Enhancements</h3>
3431
-
3432
- <ul>
3433
- <li>Added post categories based on directories containing <code class="highlighter-rouge">_posts</code> (<a href="https://github.com/mreid">@mreid</a>)</li>
3434
- <li>Added post topics based on directories underneath <code class="highlighter-rouge">_posts</code>
3435
- </li>
3436
- <li>Added new date filter that shows the full month name (<a href="https://github.com/mreid">@mreid</a>)</li>
3437
- <li>Merge Post’s YAML front matter into its to_liquid payload (<a href="https://github.com/remi">@remi</a>)</li>
3438
- <li>Restrict includes to regular files underneath <code class="highlighter-rouge">_includes</code>
3439
- </li>
3440
- <li>Bug Fixes</li>
3441
- <li>Change YAML delimiter matcher so as to not chew up 2nd level markdown headers (<a href="https://github.com/mreid">@mreid</a>)</li>
3442
- <li>Fix bug that meant page data (such as the date) was not available in templates (<a href="https://github.com/mreid">@mreid</a>)</li>
3443
- <li>Properly reject directories in <code class="highlighter-rouge">_layouts</code>
3444
- </li>
3445
- </ul>
3446
-
3447
- <h2 id="v0-2-1">0.2.1 / 2008-12-15</h2>
3448
-
3449
- <ul>
3450
- <li>Major Changes</li>
3451
- <li>Use Maruku (pure Ruby) for Markdown by default (<a href="https://github.com/mreid">@mreid</a>)</li>
3452
- <li>Allow use of RDiscount with <code class="highlighter-rouge">--rdiscount</code> flag</li>
3453
- </ul>
3454
-
3455
- <h3 id="minor-enhancements-v0-2-1">Minor Enhancements</h3>
3456
-
3457
- <ul>
3458
- <li>Don’t load directory_watcher unless it’s needed (<a href="https://github.com/pjhyett">@pjhyett</a>)</li>
3459
- </ul>
3460
-
3461
- <h2 id="v0-2-0">0.2.0 / 2008-12-14</h2>
3462
-
3463
- <ul>
3464
- <li>Major Changes</li>
3465
- <li>related_posts is now found in <code class="highlighter-rouge">site.related_posts</code>
3466
- </li>
3467
- </ul>
3468
-
3469
- <h2 id="v0-1-6">0.1.6 / 2008-12-13</h2>
3470
-
3471
- <ul>
3472
- <li>Major Features</li>
3473
- <li>Include files in <code class="highlighter-rouge">_includes</code> with <code class="highlighter-rouge">{% include x.textile %}</code>
3474
- </li>
3475
- </ul>
3476
-
3477
- <h2 id="v0-1-5">0.1.5 / 2008-12-12</h2>
3478
-
3479
- <h3 id="major-enhancements-v0-1-5">Major Enhancements</h3>
3480
-
3481
- <ul>
3482
- <li>Code highlighting with Pygments if <code class="highlighter-rouge">--pygments</code> is specified</li>
3483
- <li>Disable true LSI by default, enable with <code class="highlighter-rouge">--lsi</code>
3484
- </li>
3485
- </ul>
3486
-
3487
- <h3 id="minor-enhancements-v0-1-5">Minor Enhancements</h3>
3488
-
3489
- <ul>
3490
- <li>Output informative message if RDiscount is not available (<a href="https://github.com/JackDanger">@JackDanger</a>)</li>
3491
- <li>Bug Fixes</li>
3492
- <li>Prevent Jekyll from picking up the output directory as a source (<a href="https://github.com/JackDanger">@JackDanger</a>)</li>
3493
- <li>Skip <code class="highlighter-rouge">related_posts</code> when there is only one post (<a href="https://github.com/JackDanger">@JackDanger</a>)</li>
3494
- </ul>
3495
-
3496
- <h2 id="v0-1-4">0.1.4 / 2008-12-08</h2>
3497
-
3498
- <ul>
3499
- <li>Bug Fixes</li>
3500
- <li>DATA does not work properly with rubygems</li>
3501
- </ul>
3502
-
3503
- <h2 id="v0-1-3">0.1.3 / 2008-12-06</h2>
3504
-
3505
- <ul>
3506
- <li>Major Features</li>
3507
- <li>Markdown support (<a href="https://github.com/vanpelt">@vanpelt</a>)</li>
3508
- <li>Mephisto and CSV converters (<a href="https://github.com/vanpelt">@vanpelt</a>)</li>
3509
- <li>Code hilighting (<a href="https://github.com/vanpelt">@vanpelt</a>)</li>
3510
- <li>Autobuild</li>
3511
- <li>Bug Fixes</li>
3512
- <li>Accept both <code class="highlighter-rouge">\r\n</code> and <code class="highlighter-rouge">\n</code> in YAML header (<a href="https://github.com/vanpelt">@vanpelt</a>)</li>
3513
- </ul>
3514
-
3515
- <h2 id="v0-1-2">0.1.2 / 2008-11-22</h2>
3516
-
3517
- <ul>
3518
- <li>Major Features</li>
3519
- <li>Add a real “related posts” implementation using Classifier</li>
3520
- <li>Command Line Changes</li>
3521
- <li>Allow cli to be called with 0, 1, or 2 args intuiting dir paths if they are omitted</li>
3522
- </ul>
3523
-
3524
- <h2 id="v0-1-1">0.1.1 / 2008-11-22</h2>
3525
-
3526
- <ul>
3527
- <li>Minor Additions</li>
3528
- <li>Posts now support introspectional data e.g. <code class="highlighter-rouge">{{ page.url }}</code>
3529
- </li>
3530
- </ul>
3531
-
3532
- <h2 id="v0-1-0">0.1.0 / 2008-11-05</h2>
3533
-
3534
- <ul>
3535
- <li>First release</li>
3536
- <li>Converts posts written in Textile</li>
3537
- <li>Converts regular site pages</li>
3538
- <li>Simple copy of binary files</li>
3539
- </ul>
3540
-
3541
- <h2 id="v0-0-0">0.0.0 / 2008-10-19</h2>
3542
-
3543
- <ul>
3544
- <li>Birthday!</li>
3545
- </ul>
3546
-
3547
-
3548
-
3549
-
3550
-
3551
-
3552
-
3553
-
3554
-
3555
-
3556
-
3557
-
3558
-
3559
-
3560
-
3561
-
3562
-
3563
-
3564
-
3565
-
3566
-
3567
-
3568
-
3569
-
3570
-
3571
-
3572
-
3573
-
3574
-
3575
-
3576
-
3577
-
3578
-
3579
-
3580
-
3581
-
3582
-
3583
-
3584
-
3585
-
3586
-
3587
-
3588
-
3589
-
3590
-
3591
-
3592
-
3593
-
3594
-
3595
-
3596
-
3597
-
3598
-
3599
-
3600
-
3601
-
3602
-
3603
-
3604
-
3605
-
3606
-
3607
-
3608
-
3609
-
3610
-
3611
-
3612
-
3613
-
3614
-
3615
-
3616
-
3617
-
3618
-
3619
-
3620
-
3621
-
3622
-
3623
-
3624
-
3625
-
3626
-
3627
-
3628
-
3629
-
3630
-
3631
-
3632
-
3633
-
3634
-
3635
-
3636
-
3637
-
3638
-
3639
-
3640
-
3641
-
3642
-
3643
-
3644
-
3645
-
3646
-
3647
-
3648
-
3649
-
3650
-
3651
-
3652
-
3653
-
3654
-
3655
-
3656
-
3657
-
3658
-
3659
-
3660
- <div class="section-nav">
3661
- <div class="left align-right">
3662
-
3663
-
3664
-
3665
- <a href="/docs/conduct/" class="prev">Back</a>
3666
-
3667
- </div>
3668
- <div class="right align-left">
3669
-
3670
- <span class="next disabled">Next</span>
3671
-
3672
- </div>
3673
- </div>
3674
- <div class="clear"></div>
3675
-
3676
- </article>
3677
- </div>
3678
-
3679
- <div class="unit one-fifth hide-on-mobiles">
3680
- <aside>
3681
-
3682
- <h4>Getting Started</h4>
3683
- <ul>
3684
-
3685
-
3686
-
3687
- <li class=""><a href="/docs/home/">Welcome</a></li>
3688
-
3689
-
3690
-
3691
- <li class=""><a href="/docs/quickstart/">Quick-start guide</a></li>
3692
-
3693
-
3694
-
3695
- <li class=""><a href="/docs/installation/">Installation</a></li>
3696
-
3697
-
3698
-
3699
- <li class=""><a href="/docs/windows/">Jekyll on Windows</a></li>
3700
-
3701
-
3702
-
3703
- <li class=""><a href="/docs/usage/">Basic Usage</a></li>
3704
-
3705
-
3706
-
3707
- <li class=""><a href="/docs/structure/">Directory structure</a></li>
3708
-
3709
-
3710
-
3711
- <li class=""><a href="/docs/configuration/">Configuration</a></li>
3712
-
3713
- </ul>
3714
-
3715
-
3716
- <h4>Your Content</h4>
3717
- <ul>
3718
-
3719
-
3720
-
3721
- <li class=""><a href="/docs/frontmatter/">Front Matter</a></li>
3722
-
3723
-
3724
-
3725
- <li class=""><a href="/docs/posts/">Writing posts</a></li>
3726
-
3727
-
3728
-
3729
- <li class=""><a href="/docs/drafts/">Working with drafts</a></li>
3730
-
3731
-
3732
-
3733
- <li class=""><a href="/docs/pages/">Creating pages</a></li>
3734
-
3735
-
3736
-
3737
- <li class=""><a href="/docs/static-files/">Static Files</a></li>
3738
-
3739
-
3740
-
3741
- <li class=""><a href="/docs/variables/">Variables</a></li>
3742
-
3743
-
3744
-
3745
- <li class=""><a href="/docs/collections/">Collections</a></li>
3746
-
3747
-
3748
-
3749
- <li class=""><a href="/docs/datafiles/">Data Files</a></li>
3750
-
3751
-
3752
-
3753
- <li class=""><a href="/docs/assets/">Assets</a></li>
3754
-
3755
-
3756
-
3757
- <li class=""><a href="/docs/migrations/">Blog migrations</a></li>
3758
-
3759
- </ul>
3760
-
3761
-
3762
- <h4>Customization</h4>
3763
- <ul>
3764
-
3765
-
3766
-
3767
- <li class=""><a href="/docs/templates/">Templates</a></li>
3768
-
3769
-
3770
-
3771
- <li class=""><a href="/docs/includes/">Includes</a></li>
3772
-
3773
-
3774
-
3775
- <li class=""><a href="/docs/permalinks/">Permalinks</a></li>
3776
-
3777
-
3778
-
3779
- <li class=""><a href="/docs/pagination/">Pagination</a></li>
3780
-
3781
-
3782
-
3783
- <li class=""><a href="/docs/plugins/">Plugins</a></li>
3784
-
3785
-
3786
-
3787
- <li class=""><a href="/docs/themes/">Themes</a></li>
3788
-
3789
-
3790
-
3791
- <li class=""><a href="/docs/extras/">Extras</a></li>
3792
-
3793
- </ul>
3794
-
3795
-
3796
- <h4>Deployment</h4>
3797
- <ul>
3798
-
3799
-
3800
-
3801
- <li class=""><a href="/docs/github-pages/">GitHub Pages</a></li>
3802
-
3803
-
3804
-
3805
- <li class=""><a href="/docs/deployment-methods/">Deployment methods</a></li>
3806
-
3807
-
3808
-
3809
- <li class=""><a href="/docs/continuous-integration/">Continuous Integration</a></li>
3810
-
3811
- </ul>
3812
-
3813
-
3814
- <h4>Miscellaneous</h4>
3815
- <ul>
3816
-
3817
-
3818
-
3819
- <li class=""><a href="/docs/troubleshooting/">Troubleshooting</a></li>
3820
-
3821
-
3822
-
3823
- <li class=""><a href="/docs/sites/">Sites using Jekyll</a></li>
3824
-
3825
-
3826
-
3827
- <li class=""><a href="/docs/resources/">Resources</a></li>
3828
-
3829
-
3830
-
3831
- <li class=""><a href="/docs/upgrading/0-to-2/">Upgrading from 0.x to 2.x</a></li>
3832
-
3833
-
3834
-
3835
- <li class=""><a href="/docs/upgrading/2-to-3/">Upgrading from 2.x to 3.x</a></li>
3836
-
3837
- </ul>
3838
-
3839
-
3840
- <h4>Meta</h4>
3841
- <ul>
3842
-
3843
-
3844
-
3845
- <li class=""><a href="/docs/contributing/">Contributing</a></li>
3846
-
3847
-
3848
-
3849
- <li class=""><a href="/docs/maintaining/">Maintaining Jekyll</a></li>
3850
-
3851
-
3852
-
3853
- <li class=""><a href="/docs/conduct/">Code of Conduct</a></li>
3854
-
3855
-
3856
-
3857
- <li class="current"><a href="/docs/history/">History</a></li>
3858
-
3859
- </ul>
3860
-
3861
-
3862
- </aside>
3863
- </div>
3864
-
3865
-
3866
- <div class="clear"></div>
3867
-
3868
- </div>
3869
- </section>
3870
-
3871
-
3872
- <footer>
3873
- <div class="grid">
3874
- <div class="unit one-third center-on-mobiles">
3875
- <p>The contents of this website are <br>© 2017 under the terms of the <a href="https://github.com/jekyll/jekyll/blob/master/LICENSE">MIT License</a>.</p>
3876
- </div>
3877
- <div class="unit two-thirds align-right center-on-mobiles">
3878
- <p>
3879
- Proudly hosted by
3880
- <a href="https://github.com">
3881
- <img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
3882
- </a>
3883
- </p>
3884
- </div>
3885
- </div>
3886
- </footer>
3887
-
3888
- <script>
3889
- var anchorForId = function (id) {
3890
- var anchor = document.createElement("a");
3891
- anchor.className = "header-link";
3892
- anchor.href = "#" + id;
3893
- anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
3894
- anchor.title = "Permalink";
3895
- return anchor;
3896
- };
3897
-
3898
- var linkifyAnchors = function (level, containingElement) {
3899
- var headers = containingElement.getElementsByTagName("h" + level);
3900
- for (var h = 0; h < headers.length; h++) {
3901
- var header = headers[h];
3902
-
3903
- if (typeof header.id !== "undefined" && header.id !== "") {
3904
- header.appendChild(anchorForId(header.id));
3905
- }
3906
- }
3907
- };
3908
-
3909
- document.onreadystatechange = function () {
3910
- if (this.readyState === "complete") {
3911
- var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
3912
- if (!contentBlock) {
3913
- return;
3914
- }
3915
- for (var level = 1; level <= 6; level++) {
3916
- linkifyAnchors(level, contentBlock);
3917
- }
3918
- }
3919
- };
3920
- </script>
3921
-
3922
-
3923
- <!-- Gauges (http://get.gaug.es/) -->
3924
- <script>
3925
- var _gauges = _gauges || [];
3926
- (function() {
3927
- var t = document.createElement('script');
3928
- t.type = 'text/javascript';
3929
- t.async = true;
3930
- t.id = 'gauges-tracker';
3931
- t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
3932
- t.src = '//secure.gaug.es/track.js';
3933
- var s = document.getElementsByTagName('script')[0];
3934
- s.parentNode.insertBefore(t, s);
3935
- })();
3936
- </script>
3937
-
3938
-
3939
-
3940
- <!-- Google Analytics (https://www.google.com/analytics) -->
3941
- <script>
3942
- !function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
3943
- (j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
3944
- L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
3945
- L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
3946
-
3947
- ga('create', 'UA-50755011-1', 'jekyllrb.com');
3948
- ga('send', 'pageview');
3949
-
3950
- </script>
3951
-
3952
-
3953
-
3954
- </body>
3955
- </html>