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
data/site/news/index.html DELETED
@@ -1,3609 +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>News | Jekyll • Simple, blog-aware, static sites</title>
15
- <meta property="og:title" content="News">
16
- <meta name="author" content="all">
17
- <meta property="og:locale" content="en_US">
18
- <meta name="description" content="Transform your plain text into static websites and blogs">
19
- <meta property="og:description" content="Transform your plain text into static websites and blogs">
20
- <link rel="canonical" href="https://jekyllrb.com/news/">
21
- <meta property="og:url" content="https://jekyllrb.com/news/">
22
- <meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
23
- <meta name="twitter:card" content="summary">
24
- <meta name="twitter:site" content="@jekyllrb">
25
- <meta name="twitter:creator" content="@all">
26
- <meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
27
- <script type="application/ld+json">
28
- {"name":null,"description":"Transform your plain text into static websites and blogs","url":"https://jekyllrb.com/news/","headline":"News","dateModified":null,"datePublished":null,"sameAs":null,"@type":"WebPage","author":{"@type":"Person","name":"all"},"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"},"name":"all"},"mainEntityOfPage":null,"@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="">
46
- <a href="/docs/home/">Docs</a>
47
- </li>
48
- <li class="current">
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="">
78
- <a href="/docs/home/">Docs</a>
79
- </li>
80
- <li class="current">
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="news">
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 blog…</option>
105
- <option value="/news/">Home</option>
106
- <optgroup label="v1.x">
107
-
108
- <option value="/news/2017/09/21/jekyll-3-6-0-released/">Jekyll turns 3.6!</option>
109
-
110
- <option value="/news/2017/08/12/jekyll-3-5-2-released/">Jekyll 3.5.2 Released</option>
111
-
112
- <option value="/news/2017/07/17/jekyll-3-5-1-released/">Jekyll 3.5.1 Released</option>
113
-
114
- <option value="/news/2017/06/15/jekyll-3-5-0-released/">Jekyll turns 3.5, oh my!</option>
115
-
116
- <option value="/news/2017/03/21/jekyll-3-4-3-released/">Jekyll 3.4.3 Released</option>
117
-
118
- <option value="/news/2017/03/09/jekyll-3-4-2-released/">Jekyll 3.4.2 Released</option>
119
-
120
- <option value="/news/2017/03/02/jekyll-3-4-1-released/">Jekyll 3.4.1, or "Unintended Consequences"</option>
121
-
122
- <option value="/news/2017/01/18/jekyll-3-4-0-released/">Jekyll turns 3.4.0</option>
123
-
124
- <option value="/news/2016/11/14/jekyll-3-3-1-released/">Jekyll 3.3.1 Released</option>
125
-
126
- <option value="/news/2016/10/06/jekyll-3-3-is-here/">Jekyll 3.3 is here with better theme support, new URL filters, and tons more</option>
127
-
128
- <option value="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</option>
129
-
130
- <option value="/news/2016/08/02/jekyll-3-2-1-released/">Jekyll 3.2.1 Released with Fix for Windows</option>
131
-
132
- <option value="/news/2016/07/26/jekyll-3-2-0-released/">Jekyll turns 3.2</option>
133
-
134
- <option value="/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">Jekyll's Google Summer of Code Project: The CMS You Always Wanted</option>
135
-
136
- <option value="/news/2016/05/19/jekyll-3-1-6-released/">Jekyll 3.1.6 Released</option>
137
-
138
- <option value="/news/2016/05/18/jekyll-3-1-5-released/">Jekyll 3.1.5 Released</option>
139
-
140
- <option value="/news/2016/05/18/jekyll-3-1-4-released/">Jekyll 3.1.4 "Stability Sam" Released</option>
141
-
142
- <option value="/news/2016/04/26/jekyll-3-0-5-released/">Jekyll 3.0.5 Released</option>
143
-
144
- <option value="/news/2016/04/19/jekyll-3-1-3-released/">Jekyll 3.1.3 Released</option>
145
-
146
- <option value="/news/2016/04/19/jekyll-3-0-4-released/">Jekyll 3.0.4 Released</option>
147
-
148
- <option value="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</option>
149
-
150
- <option value="/news/2016/02/19/jekyll-3-1-2-released/">Jekyll 3.1.2 Released!</option>
151
-
152
- <option value="/news/2016/02/08/jekyll-3-0-3-released/">Jekyll 3.0.3 Released</option>
153
-
154
- <option value="/news/2016/01/28/jekyll-3-1-1-released/">Jekyll 3.1.1 Released</option>
155
-
156
- <option value="/news/2016/01/24/jekyll-3-1-0-released/">Jekyll 3.1.0 Released</option>
157
-
158
- <option value="/news/2016/01/20/jekyll-3-0-2-released/">Jekyll 3.0.2 Released</option>
159
-
160
- <option value="/news/2015/11/17/jekyll-3-0-1-released/">Jekyll 3.0.1 Released</option>
161
-
162
- <option value="/news/2015/10/26/jekyll-3-0-released/">Jekyll 3.0 Released</option>
163
-
164
- <option value="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</option>
165
-
166
- <option value="/news/2015/01/24/jekyll-3-0-0-beta1-released/">Jekyll 3.0.0.beta1 Released</option>
167
-
168
- <option value="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet &amp; Greet at GitHub HQ</option>
169
-
170
- <option value="/news/2014/12/22/jekyll-2-5-3-released/">Jekyll Release for the Holidays! v2.5.3 Out</option>
171
-
172
- <option value="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</option>
173
-
174
- <option value="/news/2014/11/12/jekyll-2-5-2-released/">Jekyll 2.5.2 Released</option>
175
-
176
- <option value="/news/2014/11/09/jekyll-2-5-1-released/">Jekyll 2.5.1 Released</option>
177
-
178
- <option value="/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/">Jekyll's Mid-Life Crisis (Or, Jekyll turns 2.5.0)</option>
179
-
180
- <option value="/news/2014/09/09/jekyll-2-4-0-released/">A Wild Jekyll 2.4.0 Appeared!</option>
181
-
182
- <option value="/news/2014/08/10/jekyll-2-3-0-released/">Jekyll 2.3.0 Released</option>
183
-
184
- <option value="/news/2014/07/29/jekyll-2-2-0-released/">Jekyll 2.2.0 Released</option>
185
-
186
- <option value="/news/2014/07/01/jekyll-2-1-1-released/">Jekyll 2.1.1 Released</option>
187
-
188
- <option value="/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/">Jekyll Turns 21! Err... I mean 2.1.0.</option>
189
-
190
- <option value="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</option>
191
-
192
- <option value="/news/2014/05/08/jekyll-2-0-3-released/">Jekyll 2.0.3 Released</option>
193
-
194
- <option value="/news/2014/05/06/jekyll-turns-2-0-0/">Jekyll turns 2.0.0</option>
195
-
196
- <option value="/news/2014/03/27/jekyll-1-5-1-released/">Jekyll 1.5.1 Released</option>
197
-
198
- <option value="/news/2014/03/24/jekyll-1-5-0-released/">Jekyll 1.5.0 Released</option>
199
-
200
- <option value="/news/2014/01/13/jekyll-1-4-3-released/">Jekyll 1.4.3 Released</option>
201
-
202
- <option value="/news/2013/12/16/jekyll-1-4-2-released/">Jekyll 1.4.2 Released</option>
203
-
204
- <option value="/news/2013/12/09/jekyll-1-4-1-released/">Jekyll 1.4.1 Released</option>
205
-
206
- <option value="/news/2013/12/07/jekyll-1-4-0-released/">Jekyll 1.4.0 Released</option>
207
-
208
- <option value="/news/2013/11/26/jekyll-1-3-1-released/">Jekyll 1.3.1 Released</option>
209
-
210
- <option value="/news/2013/11/04/jekyll-1-3-0-released/">Jekyll 1.3.0 Released</option>
211
-
212
- <option value="/news/2013/10/28/jekyll-1-3-0-rc1-released/">Jekyll 1.3.0.rc1 Released</option>
213
-
214
- <option value="/news/2013/09/14/jekyll-1-2-1-released/">Jekyll 1.2.1 Released</option>
215
-
216
- <option value="/news/2013/09/06/jekyll-1-2-0-released/">Jekyll 1.2.0 Released</option>
217
-
218
- <option value="/news/2013/07/25/jekyll-1-1-2-released/">Jekyll 1.1.2 Released</option>
219
-
220
- <option value="/news/2013/07/25/jekyll-1-0-4-released/">Jekyll 1.0.4 Released</option>
221
-
222
- <option value="/news/2013/07/24/jekyll-1-1-1-released/">Jekyll 1.1.1 Released</option>
223
-
224
- <option value="/news/2013/07/14/jekyll-1-1-0-released/">Jekyll 1.1.0 Released</option>
225
-
226
- <option value="/news/2013/06/07/jekyll-1-0-3-released/">Jekyll 1.0.3 Released</option>
227
-
228
- <option value="/news/2013/05/12/jekyll-1-0-2-released/">Jekyll 1.0.2 Released</option>
229
-
230
- <option value="/news/2013/05/08/jekyll-1-0-1-released/">Jekyll 1.0.1 Released</option>
231
-
232
- <option value="/news/2013/05/05/jekyll-1-0-0-released/">Jekyll 1.0.0 Released</option>
233
-
234
- </optgroup>
235
- </select>
236
- </div>
237
-
238
-
239
- <div class="unit four-fifths">
240
-
241
- <article>
242
- <h2>
243
- <a href="/news/2017/09/21/jekyll-3-6-0-released/">
244
- Jekyll turns 3.6!
245
- </a>
246
- </h2>
247
- <span class="post-category">
248
- <span class="label">
249
- release
250
- </span>
251
- </span>
252
- <div class="post-meta">
253
- <span class="post-date">
254
- 21 Sep 2017
255
- </span>
256
- <a href="https://github.com/parkr" class="post-author">
257
-
258
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
259
- parkr
260
- </a>
261
- </div>
262
- <div class="post-content">
263
- <p>Another much-anticipated release of Jekyll. This release comes with it Rouge 2 support, but note you can continue to use Rouge 1 if you’d prefer. We also now require Ruby 2.1.0 as 2.0.x is no longer supported by the Ruby team.</p>
264
-
265
- <p>Otherwise, it’s a massive bug-fix release! A few bugs were found and squashed with our <code class="highlighter-rouge">Drop</code> implementation. We’re using the Schwartzian transform to speed up our custom sorting (thanks, Perl community!). We now protect against images that are named like posts and we generally worked on guarding our code to enforce requirements, instead of assuming the input was as expected.</p>
266
-
267
- <p>Please let us know if you find any bugs! You can see <a href="/docs/history/#v3-6-0">the full history here</a>.</p>
268
-
269
- <p>Many thanks to our contributors who helped make this release possible: Aleksander Kuś, André Jaenisch, Antonio Argote, ashmaroli, Ben Balter, Bogdan, Bradley Meck, David Zhang, Florian Thomas, Frank Taillandier, Jordon Bedwell, Joshua Byrd, Kyle Zhao, lymaconsulting, Maciej Bembenista, Matt Sturgeon, Natanael Arndt, Ohad Schneider, Pat Hawks, Pedro Lamas, and Sid Verma.</p>
270
-
271
- <p>As always, Happy Jekylling!</p>
272
-
273
- </div>
274
- </article>
275
-
276
-
277
- <article>
278
- <h2>
279
- <a href="/news/2017/08/12/jekyll-3-5-2-released/">
280
- Jekyll 3.5.2 Released
281
- </a>
282
- </h2>
283
- <span class="post-category">
284
- <span class="label">
285
- release
286
- </span>
287
- </span>
288
- <div class="post-meta">
289
- <span class="post-date">
290
- 12 Aug 2017
291
- </span>
292
- <a href="https://github.com/parkr" class="post-author">
293
-
294
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
295
- parkr
296
- </a>
297
- </div>
298
- <div class="post-content">
299
- <p>3.5.2 is out with 6 great bug fixes, most notably one which should dramatically speed up generation of your site! In testing #6266, jekyllrb.com generation when from 18 seconds down to 8! Here is the full line-up of fixes:</p>
300
-
301
- <ul>
302
- <li>Backport #6266 for v3.5.x: Memoize the return value of <code class="highlighter-rouge">Document#url</code> (#6301)</li>
303
- <li>Backport #6247 for v3.5.x: kramdown: symbolize keys in-place (#6303)</li>
304
- <li>Backport #6281 for v3.5.x: Fix <code class="highlighter-rouge">Drop#key?</code> so it can handle a nil argument (#6288)</li>
305
- <li>Backport #6280 for v3.5.x: Guard against type error in <code class="highlighter-rouge">absolute_url</code> (#6287)</li>
306
- <li>Backport #6273 for v3.5.x: delegate <code class="highlighter-rouge">StaticFile#to_json</code> to <code class="highlighter-rouge">StaticFile#to_liquid</code> (#6302)</li>
307
- <li>Backport #6226 for v3.5.x: <code class="highlighter-rouge">Reader#read_directories</code>: guard against an entry not being a directory (#6304</li>
308
- </ul>
309
-
310
- <p>A <a href="/docs/history/#v3-5-2">full history</a> is available for your perusal. As always, please file bugs if you encounter them! Opening a pull request with a failing test for your expected behaviour is the easiest way for us to address the issue since we have a reproducible example to test again. Short of that, please fill out our issue template to the best of your ability and we’ll try to get to it quickly!</p>
311
-
312
- <p>Many thanks to our contributors without whom this release could not be
313
- possible: Ben Balter &amp; Kyle Zhao.</p>
314
-
315
- <p>Happy Jekylling!</p>
316
-
317
- </div>
318
- </article>
319
-
320
-
321
- <article>
322
- <h2>
323
- <a href="/news/2017/07/17/jekyll-3-5-1-released/">
324
- Jekyll 3.5.1 Released
325
- </a>
326
- </h2>
327
- <span class="post-category">
328
- <span class="label">
329
- release
330
- </span>
331
- </span>
332
- <div class="post-meta">
333
- <span class="post-date">
334
- 17 Jul 2017
335
- </span>
336
- <a href="https://github.com/parkr" class="post-author">
337
-
338
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
339
- parkr
340
- </a>
341
- </div>
342
- <div class="post-content">
343
- <p>We’ve released a few bugfixes in the form of v3.5.1 today:</p>
344
-
345
- <ul>
346
- <li>Some plugins stopped functioning properly due to a NoMethodError for <code class="highlighter-rouge">registers</code> on NilClass. That’s been fixed.</li>
347
- <li>A bug in <code class="highlighter-rouge">relative_url</code> when <code class="highlighter-rouge">baseurl</code> is <code class="highlighter-rouge">nil</code> caused URL’s to come out wrong. Squashed.</li>
348
- <li>Static files’ liquid representations should now have all the keys you were expecting when serialized into JSON.</li>
349
- </ul>
350
-
351
- <p>We apologize for the breakages! We’re working diligently to improve how we test our plugins with Jekyll core to prevent breakages in the future.</p>
352
-
353
- <p>More details in <a href="/docs/history/#v3-5-1">the history</a>. Many thanks to all the contributors to Jekyll v3.5.1: Adam Voss, ashmaroli, Ben Balter, Coby Chapple, Doug Beney, Fadhil, Florian Thomas, Frank Taillandier, James, jaybe, Joshua Byrd, Kevin Plattret, &amp; Robert Jäschke.</p>
354
-
355
- <p>Happy Jekylling!</p>
356
-
357
- </div>
358
- </article>
359
-
360
-
361
- <article>
362
- <h2>
363
- <a href="/news/2017/06/15/jekyll-3-5-0-released/">
364
- Jekyll turns 3.5, oh my!
365
- </a>
366
- </h2>
367
- <span class="post-category">
368
- <span class="label">
369
- release
370
- </span>
371
- </span>
372
- <div class="post-meta">
373
- <span class="post-date">
374
- 15 Jun 2017
375
- </span>
376
- <a href="https://github.com/parkr" class="post-author">
377
-
378
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
379
- parkr
380
- </a>
381
- </div>
382
- <div class="post-content">
383
- <p>Good news! Nearly 400 commits later, Jekyll 3.5.0 has been released into
384
- the wild. Some new shiny things you might want to test out:</p>
385
-
386
- <ul>
387
- <li>Jekyll now uses Liquid 4, the latest! It comes with whitespace control, new filters <code class="highlighter-rouge">concat</code> and <code class="highlighter-rouge">compact</code>, loop performance improvements and <a href="https://github.com/Shopify/liquid/blob/master/History.md#400--2016-12-14--branch-4-0-stable">many fixes</a>
388
- </li>
389
- <li>Themes can specify runtime dependencies (in their gemspecs) and we’ll require those. This makes it easier for theme writers to use plugins.</li>
390
- <li>Speaking of themes, we’ll properly handle the discrepancy between a convertible file in the local site and a static file in the theme. Overriding a file locally now doesn’t matter if it’s convertible or static.</li>
391
- <li>Pages, posts, and other documents can now access layout variables via <code class="highlighter-rouge">{{ layout }}</code>.</li>
392
- <li>The <code class="highlighter-rouge">gems</code> key in the <code class="highlighter-rouge">_config.yml</code> is now <code class="highlighter-rouge">plugins</code>. This is backwards-compatible, as Jekyll will gracefully upgrade <code class="highlighter-rouge">gems</code> to <code class="highlighter-rouge">plugins</code> if you use the former.</li>
393
- <li>Filters like <code class="highlighter-rouge">sort</code> now allow you to sort based on a subvalue, e.g. <code class="highlighter-rouge">{% assign sorted = site.posts | sort: "image.alt_text" %}</code>.</li>
394
- <li>You can now create tab-separated data files.</li>
395
- <li>Using <code class="highlighter-rouge">layout: none</code> will now produce a file with no layout. Equivalent to <code class="highlighter-rouge">layout: null</code>, with the exception that <code class="highlighter-rouge">none</code> is a truthy value and won’t be overwritten by front matter defaults.</li>
396
- <li>No more pesky errors if your URL contains a colon (sorry about those!)</li>
397
- <li>We now automatically exclude the <code class="highlighter-rouge">Gemfile</code> from the site manifest when compiling your site. No more <code class="highlighter-rouge">_site/Gemfile</code>!</li>
398
- <li>We fixed a bug where abbreviated post dates were ignored, e.g. <code class="highlighter-rouge">_posts/2016-4-4-april-fourth.md</code>.</li>
399
- </ul>
400
-
401
- <p>And <a href="/docs/history/">so much more!</a></p>
402
-
403
- <p>There was a huge amount of effort put into this release by our maintainers,
404
- especially <a href="https://github.com/pathawks" class="user-mention">@pathawks</a>, <a href="https://github.com/DirtyF" class="user-mention">@DirtyF</a>, and <a href="https://github.com/pup" class="user-mention">@pup</a>. Huge thanks to them for ushering
405
- this release along and keeping the contributions flowing! Jekyll wouldn’t
406
- work without the tireless dedication of our team captains &amp; maintainers.
407
- Thank you, all!</p>
408
-
409
- <p>A huge thanks as well to our contributors to this release: Adam Hollett, Aleksander Kuś, Alfred Myers, Anatoliy Yastreb, Antonio Argote, Ashton Hellwig, Ashwin Maroli, Ben Balter, BlueberryFoxtrot, Brent Yi, Chris Finazzo, Christoph Päper, Christopher League, Chun Fei Lung, Colin, David Zhang, Eric Leong, Finn Ellis, Florian Thomas, Frank Taillandier, Hendrik Schneider, Henry Kobin, Ivan Storck, Jakub Klímek, Jan Pobořil, Jeff Puckett, Jonathan Hooper, Kaligule, Kevin Funk, Krzysztof Szafranek, Liu Cheng, Lukasz Brodowski, Marc Bruins, Marcelo Canina, Martin Desrumaux, Mer, Nate, Oreonax, Parker Moore, Pat Hawks, Pedro Lamas, Phil Nash, Ricardo N Feliciano, Ricky Han, Roger Sheen, Ryan Lue, Ryan Streur, Shane Neuville, Sven Meyer, Tom Johnson, William Entriken, Yury V. Zaytsev, Zarino Zappia, dyang, jekylltools, sean delaney, zenHeart</p>
410
-
411
- <p>Please file any bugs with detailed replication instructions if you find any
412
- bugs. Better yet, submit a patch if you find the bug in the code and know
413
- how to fix it! <img class="emoji" title=":heart:" alt=":heart:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/2764.png" height="20" width="20" align="absmiddle"></p>
414
-
415
- <p>Happy Jekylling! <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"></p>
416
-
417
- </div>
418
- </article>
419
-
420
-
421
- <article>
422
- <h2>
423
- <a href="/news/2017/03/21/jekyll-3-4-3-released/">
424
- Jekyll 3.4.3 Released
425
- </a>
426
- </h2>
427
- <span class="post-category">
428
- <span class="label">
429
- release
430
- </span>
431
- </span>
432
- <div class="post-meta">
433
- <span class="post-date">
434
- 21 Mar 2017
435
- </span>
436
- <a href="https://github.com/pathawks" class="post-author">
437
-
438
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/pathawks?v=3&amp;s=24" alt="pathawks" srcset="https://avatars3.githubusercontent.com/pathawks?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/pathawks?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/pathawks?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/pathawks?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
439
- pathawks
440
- </a>
441
- </div>
442
- <div class="post-content">
443
- <p>Another one-PR patch update as we continue our quest to destroy all bugs. A
444
- fairly technical debriefing follows, but the TLDR is that we have updated the
445
- <code class="highlighter-rouge">uri_escape</code> filter to more closely follow the pre-v3.4.0 behavior.</p>
446
-
447
- <p>In <a href="/news/2017/01/18/jekyll-3-4-0-released/">v3.4.0</a>, we
448
- moved away from using the deprecated
449
- <a href="https://ruby-doc.org/stdlib-2.3.0/libdoc/uri/rdoc/URI/Escape.html#method-i-encode"><code class="highlighter-rouge">URI.escape</code></a>
450
- in favor of
451
- <a href="http://www.rubydoc.info/gems/addressable/Addressable/URI#encode-class_method"><code class="highlighter-rouge">Addressable::URI.encode</code></a>.
452
- This is what powers our <a href="https://jekyllrb.com/docs/templates/"><code class="highlighter-rouge">uri_escape</code>
453
- filter</a>.</p>
454
-
455
- <p>While this transition was mostly a smooth one, the two methods are not
456
- identical. While <code class="highlighter-rouge">URI.escape</code> was happy to escape any string,
457
- <code class="highlighter-rouge">Addressable::URI.encode</code> first turns the string into an <code class="highlighter-rouge">Addressable::URI</code>
458
- object, and will then escape each component of that object. In most cases, this
459
- difference was insignificant, but there were a few cases where this caused some
460
- unintended regressions when encoding colons.</p>
461
-
462
- <p>While <strong>Addressable</strong> can understand that something like <code class="highlighter-rouge">"/example :page"</code> is a
463
- relative URI, without the slash it cannot figure out how to turn
464
- <code class="highlighter-rouge">"example :page"</code> into an <code class="highlighter-rouge">Addressable::URI</code> object. <code class="highlighter-rouge">URI.escape</code> had no such
465
- objection. This lead to the following Liquid code working fine in Jekyll 3.3.x
466
- but breaking in 3.4.0:</p>
467
-
468
- <div class="language-liquid highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="p">{{</span><span class="w"> </span><span class="s2">"example :page"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">uri_escape</span><span class="w"> </span><span class="p">}}</span>
469
- </code></pre></div></div>
470
-
471
- <p>This was not an intended consequence of switching to <strong>Addressable</strong>.</p>
472
-
473
- <p>Fortunately, the solution was not complicated. <strong>Addressable</strong> has a method
474
- <a href="http://www.rubydoc.info/gems/addressable/Addressable/URI#normalize_component-class_method"><code class="highlighter-rouge">Addressable::URI.normalize_component</code></a>
475
- which will simply escape the characters in a string, much like <code class="highlighter-rouge">URI.escape</code>.</p>
476
-
477
- <p>Thanks to <a href="https://github.com/cameronmcefee" class="user-mention">@cameronmcefee</a> and <a href="https://github.com/FriesFlorian" class="user-mention">@FriesFlorian</a> for reporting
478
- <a href="https://github.com/jekyll/jekyll/issues/5954">this issue</a>.</p>
479
-
480
- <p>Happy Jekylling!</p>
481
-
482
- </div>
483
- </article>
484
-
485
-
486
- <article>
487
- <h2>
488
- <a href="/news/2017/03/09/jekyll-3-4-2-released/">
489
- Jekyll 3.4.2 Released
490
- </a>
491
- </h2>
492
- <span class="post-category">
493
- <span class="label">
494
- release
495
- </span>
496
- </span>
497
- <div class="post-meta">
498
- <span class="post-date">
499
- 09 Mar 2017
500
- </span>
501
- <a href="https://github.com/parkr" class="post-author">
502
-
503
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
504
- parkr
505
- </a>
506
- </div>
507
- <div class="post-content">
508
- <p>Another one-PR patch update, though without the same <a href="/news/2017/03/02/jekyll-3-4-1-released/">lessons as for the
509
- previous release</a>.</p>
510
-
511
- <p>This release includes a beneficial change for a number of plugins:
512
- <strong>static files now respect front matter defaults</strong>.</p>
513
-
514
- <p>You might be asking yourself: “why would static files, files that are
515
- static files explicitly because they <em>don’t</em> have YAML front matter, want
516
- to respect YAML front matter?” That’s a great question. Let me illustrate
517
- with an example.</p>
518
-
519
- <p>Let’s look at <code class="highlighter-rouge">jekyll-sitemap</code>. This plugin generates a list of documents,
520
- pages, and static files, and some metadata for them in an XML file for a
521
- Google/Yahoo/Bing/DuckDuckGo crawler to consume. If you don’t want a given
522
- file in this list, you set <code class="highlighter-rouge">sitemap: false</code> in the YAML front matter. But
523
- what about static files, which don’t have YAML front matter? Before this
524
- release, they could not be excluded because they had no properties in YAML
525
- other than <a href="https://github.com/jekyll/jekyll/blob/v3.4.1/lib/jekyll/static_file.rb#L98-L106">the ones we explicitly assigned</a>.
526
- So if you had a PDF you didn’t want to be in your sitemap, you couldn’t use
527
- <code class="highlighter-rouge">jekyll-sitemap</code>.</p>
528
-
529
- <p>With this release, you can now set <a href="/docs/configuration/#front-matter-defaults">front matter
530
- defaults</a> for static files:</p>
531
-
532
- <div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="na">defaults</span><span class="pi">:</span>
533
- <span class="pi">-</span>
534
- <span class="na">scope</span><span class="pi">:</span>
535
- <span class="na">path</span><span class="pi">:</span> <span class="s2">"</span><span class="s">pdfs/"</span>
536
- <span class="na">values</span><span class="pi">:</span>
537
- <span class="na">sitemap</span><span class="pi">:</span> <span class="no">false</span>
538
- </code></pre></div></div>
539
-
540
- <p>Now, for every file in the Liquid <code class="highlighter-rouge">site.static_files</code> loop which is in the
541
- folder <code class="highlighter-rouge">pdfs/</code>, you’ll see <code class="highlighter-rouge">sitemap</code> equal to <code class="highlighter-rouge">false</code>.</p>
542
-
543
- <p>Many thanks to <a href="https://github.com/benbalter" class="user-mention">@benbalter</a> for coming up with the solution and ensuring
544
- sitemaps everywhere are filled with just the right content.</p>
545
-
546
- <p>As always, if you notice any bugs, please search the issues and file one if
547
- you can’t find another related to your issue.</p>
548
-
549
- <p>Happy Jekylling!</p>
550
-
551
- </div>
552
- </article>
553
-
554
-
555
- <article>
556
- <h2>
557
- <a href="/news/2017/03/02/jekyll-3-4-1-released/">
558
- Jekyll 3.4.1, or "Unintended Consequences"
559
- </a>
560
- </h2>
561
- <span class="post-category">
562
- <span class="label">
563
- release
564
- </span>
565
- </span>
566
- <div class="post-meta">
567
- <span class="post-date">
568
- 02 Mar 2017
569
- </span>
570
- <a href="https://github.com/parkr" class="post-author">
571
-
572
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
573
- parkr
574
- </a>
575
- </div>
576
- <div class="post-content">
577
- <p>Conformity is a confounding thing.</p>
578
-
579
- <p>We write tests to ensure that a piece of functionality that works today
580
- will work tomorrow, as further modifications are made to the codebase. This
581
- is a principle of modern software development: every change must have a
582
- test to guard against regressions to the functionality implemented by that
583
- change.</p>
584
-
585
- <p>And yet, occasionally, our very best efforts to test functionality will be
586
- thwarted. This is because of how our code produces unintended
587
- functionality, which naturally goes untested.</p>
588
-
589
- <p>In our documentation, we tell users to name their posts with the following
590
- format:</p>
591
-
592
- <div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>YYYY-MM-DD-title.extension
593
- </code></pre></div></div>
594
-
595
- <p>That format specifies exactly four numbers for the year, e.g. 2017, two
596
- letters for the month, e.g. 03, and two letters for the day, e.g. 02. To
597
- match this, we had the following regular expression:</p>
598
-
599
- <div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">+-</span><span class="se">\d</span><span class="sr">+-</span><span class="se">\d</span><span class="sr">+)-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
600
- </code></pre></div></div>
601
-
602
- <p>You might already see the punchline. While our documentation specifies the
603
- exact number of numbers that is required for each section of the date, our
604
- regular expression does not enforce this precision. What happens if a user
605
- doesn’t conform to our documentation?</p>
606
-
607
- <p>We recently <a href="https://github.com/jekyll/jekyll/issues/5603">received a bug report</a>
608
- that detailed how the following file was considered a post:</p>
609
-
610
- <div class="language-text highlighter-rouge"><div class="highlight"><pre class="highlight"><code>84093135-42842323-42000001-b890-136270f7e5f1.md
611
- </code></pre></div></div>
612
-
613
- <p>Of course! It matches the above regular expression, but doesn’t satisfy
614
- other requirements about those numbers being a valid date (unless you’re
615
- living in a world that has 43 million months, and 42 million (and one)
616
- days). So, we <a href="https://github.com/jekyll/jekyll/pull/5609">modified the regular expression to match our
617
- documentation</a>:</p>
618
-
619
- <div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">{4}-</span><span class="se">\d</span><span class="sr">{2}-</span><span class="se">\d</span><span class="sr">{2})-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
620
- </code></pre></div></div>
621
-
622
- <p>Our tests all passed and we were properly excluding this crazy date with 43
623
- million months and days. This change shipped in Jekyll v3.4.0 and all was
624
- well.</p>
625
-
626
- <p>Well, not so much.</p>
627
-
628
- <p>A very common way to specify the month of February is <code class="highlighter-rouge">2</code>. This is true for
629
- all single-digit months and days of the month. Notice anything about our
630
- first regular expression versus our second? The second regular expression
631
- imposes a <strong>minimum</strong>, as well as maximum, number of digits. This change
632
- made Jekyll ignore dates with single-digit days and months.</p>
633
-
634
- <p>The first eight years of Jekyll’s existence had allowed single-digit days
635
- and months due to an imprecise regular expression. For some people, their
636
- entire blog was missing, and there were no errors that told them why.</p>
637
-
638
- <p>After receiving a few bug reports, it became clear what had happened.
639
- Unintended functionality of the last eight years had been broken. Thus,
640
- v3.4.0 was broken for a non-negligible number of sites. With a test site
641
- in-hand from <a href="https://github.com/andrewbanchich" class="user-mention">@andrewbanchich</a>, I tracked it down to this regular expression
642
- and <a href="https://github.com/jekyll/jekyll/pull/5920">reintroduced</a> a proper
643
- minimum number of digits for each segment:</p>
644
-
645
- <div class="language-ruby highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="sr">%r!^(?:.+/)*(</span><span class="se">\d</span><span class="sr">{2,4}-</span><span class="se">\d</span><span class="sr">{1,2}-</span><span class="se">\d</span><span class="sr">{1,2})-(.*)(</span><span class="se">\.</span><span class="sr">[^.]+)$!</span>
646
- </code></pre></div></div>
647
-
648
- <p>And, I wrote a test.</p>
649
-
650
- <p>This change was quickly backported to v3.4.0 and here we are: releasing
651
- v3.4.1. It will fix the problem for all users who were using single-digit
652
- months and days.</p>
653
-
654
- <p>With this, I encourage all of you to look at your code for <em>unintended</em>
655
- functionality and make a judgement call: if it’s allowed, <em>should it be</em>?
656
- If it should be allowed, make it <em>intended</em> functionality and test it! I
657
- know I’ll be looking at my code with much greater scrutiny going forward,
658
- looking for unintended consequences.</p>
659
-
660
- <p>Many thanks to our Jekyll affinity team captains who helped out, including
661
- <a href="https://github.com/pathawks" class="user-mention">@pathawks</a>, <a href="https://github.com/pnn" class="user-mention">@pnn</a>, and <a href="https://github.com/DirtyF" class="user-mention">@DirtyF</a>. Thanks, too, to <a href="https://github.com/ashmaroli" class="user-mention">@ashmaroli</a> for reviewing my
662
- change with an eye for consistency and precision. This was certainly a team
663
- effort.</p>
664
-
665
- <p>We hope Jekyll v3.4.1 brings your variable-digit dates back to their
666
- previous glory. We certainly won’t let that unintended functionality be
667
- unintended any longer.</p>
668
-
669
- <p>As always, Happy Jekylling!</p>
670
-
671
- </div>
672
- </article>
673
-
674
-
675
- <article>
676
- <h2>
677
- <a href="/news/2017/01/18/jekyll-3-4-0-released/">
678
- Jekyll turns 3.4.0
679
- </a>
680
- </h2>
681
- <span class="post-category">
682
- <span class="label">
683
- release
684
- </span>
685
- </span>
686
- <div class="post-meta">
687
- <span class="post-date">
688
- 18 Jan 2017
689
- </span>
690
- <a href="https://github.com/parkr" class="post-author">
691
-
692
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
693
- parkr
694
- </a>
695
- </div>
696
- <div class="post-content">
697
- <p>Hey there! We have a quick update of Jekyll for you to enjoy this January.
698
- Packed full of bug fixes as usual, thanks to the tireless efforts of our
699
- exceptional Jekyll community. Three changes to call out:</p>
700
-
701
- <ol>
702
- <li>If you’re a big fan of <a href="/docs/templates/#filters"><code class="highlighter-rouge">where_by_exp</code></a>, you’ll be an
703
- even bigger fan of <a href="/docs/templates/#filters"><code class="highlighter-rouge">group_by_exp</code></a>.</li>
704
- <li>Using a custom timezone in Jekyll on Windows? Yeah, sorry that hasn’t ever worked
705
- properly. We made it possible to accurately <a href="https://jekyllrb.com/docs/windows/#timezone-management">set the timezone using IANA
706
- timezone codes</a>.</li>
707
- <li>Documentation has been improved, notably on themes, includes and permalinks.</li>
708
- </ol>
709
-
710
- <p>And <a href="/docs/history/#v3-4-0">lots and lots more!</a></p>
711
-
712
- <p>This update was made possible by the dedicated efforts of our excellent
713
- contributors: Ajay Karwal, Alexey Rogachev, Ashwin Maroli,
714
- BlueberryFoxtrot, Chase, Chayoung You, Dean Attali, Dmitrii Evdokimov, Don
715
- Denton, Eldritch Cheese, Fabrice Laporte, Florian Thomas, Frank
716
- Taillandier, Hugo, Ivan Dmitrievsky, Joel Meyer-Hamme, Josh Habdas, Kenton
717
- Hansen, Kevin Wojniak, Kurt Anderson, Longwelwind, Max Chadwick, Nicolas
718
- Hoizey, Nursen, Parker Moore, Pat Hawks, Purplecarrot, Ricardo N Feliciano,
719
- Rob Crocombe, Roger Ogden, Skylar Challand, Thiago Arrais, Tim Banks, Tom
720
- Johnson, Tunghsiao Liu, XhmikosR, Zlatan Vasović, alexmalik, brainscript,
721
- kimbaudi, muratayusuke, penny, and yoostk.</p>
722
-
723
- <p>As always, if you encounter bugs, please do <a href="https://github.com/jekyll/jekyll/issues">search the issues</a>
724
- and <a href="https://github.com/jekyll/jekyll/issues/new">file an issue</a> if you aren’t able to
725
- find a resolution. We also have <a href="https://talk.jekyllrb.com">our Jekyll Talk
726
- forum</a> for those of you with general questions
727
- about how to accomplish certain tasks with Jekyll.</p>
728
-
729
- <p>We have some exciting updates in store for v3.5, and we’re hard at work on
730
- those already.</p>
731
-
732
- <p>Happy Jekylling!</p>
733
-
734
- </div>
735
- </article>
736
-
737
-
738
- <article>
739
- <h2>
740
- <a href="/news/2016/11/14/jekyll-3-3-1-released/">
741
- Jekyll 3.3.1 Released
742
- </a>
743
- </h2>
744
- <span class="post-category">
745
- <span class="label">
746
- release
747
- </span>
748
- </span>
749
- <div class="post-meta">
750
- <span class="post-date">
751
- 14 Nov 2016
752
- </span>
753
- <a href="https://github.com/parkr" class="post-author">
754
-
755
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
756
- parkr
757
- </a>
758
- </div>
759
- <div class="post-content">
760
- <p>Hello! We have a bugfix release of Jekyll hot off the presses for you. Key
761
- fixes to call out:</p>
762
-
763
- <ol>
764
- <li>Only warn about auto-regeneration issues on Windows instead of disabling</li>
765
- <li>Exclude very specific <code class="highlighter-rouge">vendor/</code> subdirectories instead of all of <code class="highlighter-rouge">vendor/</code>
766
- </li>
767
- <li>Allow permalink templates to have plaintext underscores</li>
768
- </ol>
769
-
770
- <p>..and lots more! Check out the <a href="/docs/history/#v3-3-1">full history for more</a>.</p>
771
-
772
- <p>Happy Jekylling!</p>
773
-
774
- </div>
775
- </article>
776
-
777
-
778
- <article>
779
- <h2>
780
- <a href="/news/2016/10/06/jekyll-3-3-is-here/">
781
- Jekyll 3.3 is here with better theme support, new URL filters, and tons more
782
- </a>
783
- </h2>
784
- <span class="post-category">
785
- <span class="label">
786
- release
787
- </span>
788
- </span>
789
- <div class="post-meta">
790
- <span class="post-date">
791
- 06 Oct 2016
792
- </span>
793
- <a href="https://github.com/parkr" class="post-author">
794
-
795
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
796
- parkr
797
- </a>
798
- </div>
799
- <div class="post-content">
800
- <p>There are tons of great new quality-of-life features you can use in 3.3.
801
- Three key things you might want to try:</p>
802
-
803
- <h3 id="1-themes-can-now-ship-static--dynamic-assets-in-an-assets-directory">1. Themes can now ship static &amp; dynamic assets in an <code class="highlighter-rouge">/assets</code> directory</h3>
804
-
805
- <p>In Jekyll 3.2, we shipped the ability to use a theme that was packaged as a
806
- <a href="http://guides.rubygems.org/">gem</a>. 3.2 included support for includes,
807
- layouts, and sass partials. In 3.3, we’re adding assets to that list.</p>
808
-
809
- <p>In an effort to make theme management a bit easier, any files you put into
810
- <code class="highlighter-rouge">/assets</code> in your theme will be read in as though they were part of the
811
- user’s site. This means you can ship SCSS and CoffeeScript, images and
812
- webfonts, and so on – anything you’d consider a part of the
813
- <em>presentation</em>. Same rules apply here as in a Jekyll site: if it has YAML
814
- front matter, it will be converted and rendered. No YAML front matter, and
815
- it will simply be copied over like a static asset.</p>
816
-
817
- <p>Note that if a user has a file of the same path, the theme content will not
818
- be included in the site, i.e. a user’s <code class="highlighter-rouge">/assets/main.scss</code> will be read and
819
- processed if present instead of a theme’s <code class="highlighter-rouge">/assets/main.scss</code>.</p>
820
-
821
- <p>See our <a href="/docs/themes/#assets">documentation on the subject</a>
822
- for more info.</p>
823
-
824
- <h3 id="2-relative_url-and-absolute_url-filters">2. <code class="highlighter-rouge">relative_url</code> and <code class="highlighter-rouge">absolute_url</code> filters</h3>
825
-
826
- <p>Want a clean way to prepend the <code class="highlighter-rouge">baseurl</code> or <code class="highlighter-rouge">url</code> in your config? These
827
- new filters have you covered. When working locally, if you set your
828
- <code class="highlighter-rouge">baseurl</code> to match your deployment environment, say <code class="highlighter-rouge">baseurl: "/myproject"</code>,
829
- then <code class="highlighter-rouge">relative_url</code> will ensure that this baseurl is prepended to anything
830
- you pass it:</p>
831
-
832
- <figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">relative_url</span><span class="w"> </span><span class="p">}}</span> =&gt; /myproject/docs/assets</code></pre></figure>
833
-
834
- <p>By default, <code class="highlighter-rouge">baseurl</code> is set to <code class="highlighter-rouge">""</code> and therefore yields (never set to
835
- <code class="highlighter-rouge">"/"</code>):</p>
836
-
837
- <figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">relative_url</span><span class="w"> </span><span class="p">}}</span> =&gt; /docs/assets</code></pre></figure>
838
-
839
- <p>A result of <code class="highlighter-rouge">relative_url</code> will safely always produce a URL which is
840
- relative to the domain root. A similar principle applies to <code class="highlighter-rouge">absolute_url</code>.
841
- It prepends your <code class="highlighter-rouge">baseurl</code> and <code class="highlighter-rouge">url</code> values, making absolute URLs all the
842
- easier to make:</p>
843
-
844
- <figure class="highlight"><pre><code class="language-liquid" data-lang="liquid"><span class="p">{{</span><span class="w"> </span><span class="s2">"/docs/assets/"</span><span class="w"> </span><span class="p">|</span><span class="w"> </span><span class="nf">absolute_url</span><span class="w"> </span><span class="p">}}</span> =&gt; https://jekyllrb.com/myproject/docs/assets</code></pre></figure>
845
-
846
- <h3 id="3-siteurl-is-set-by-the-development-server">3. <code class="highlighter-rouge">site.url</code> is set by the development server</h3>
847
-
848
- <p>When you run <code class="highlighter-rouge">jekyll serve</code> locally, it starts a web server, usually at
849
- <code class="highlighter-rouge">http://localhost:4000</code>, that you use to preview your site during
850
- development. If you are using the new <code class="highlighter-rouge">absolute_url</code> filter, or using
851
- <code class="highlighter-rouge">site.url</code> anywhere, you have probably had to create a development config
852
- which resets the <code class="highlighter-rouge">url</code> value to point to <code class="highlighter-rouge">http://localhost:4000</code>.</p>
853
-
854
- <p>No longer! When you run <code class="highlighter-rouge">jekyll serve</code>, Jekyll will build your site with
855
- the value of the <code class="highlighter-rouge">host</code>, <code class="highlighter-rouge">port</code>, and SSL-related options. This defaults to
856
- <code class="highlighter-rouge">url: http://localhost:4000</code>. When you are developing locally, <code class="highlighter-rouge">site.url</code>
857
- will yield <code class="highlighter-rouge">http://localhost:4000</code>.</p>
858
-
859
- <p>This happens by default when running Jekyll locally. It will not be set if
860
- you set <code class="highlighter-rouge">JEKYLL_ENV=production</code> and run <code class="highlighter-rouge">jekyll serve</code>. If <code class="highlighter-rouge">JEKYLL_ENV</code> is
861
- any value except <code class="highlighter-rouge">development</code> (its default value), Jekyll will not
862
- overwrite the value of <code class="highlighter-rouge">url</code> in your config. And again, this only applies
863
- to serving, not to building.</p>
864
-
865
- <h2 id="a-lot-more">A <em>lot</em> more!</h2>
866
-
867
- <p>There are dozens of bug fixes and minor improvements to make your Jekyll
868
- experience better than ever. With every Jekyll release, we strive to bring
869
- greater stability and reliability to your everyday development workflow.</p>
870
-
871
- <p>As always, thanks to our many contributors who contributed countless hours
872
- of their free time to making this release happen:</p>
873
-
874
- <p>Anatoliy Yastreb, Anthony Gaudino, Antonio, Ashwin Maroli, Ben Balter,
875
- Charles Horn, Chris Finazzo, Daniel Chapman, David Zhang, Eduardo
876
- Bouças, Edward Thomson, Eloy Espinaco, Florian Thomas, Frank Taillandier,
877
- Gerardo, Heng Kwokfu, Heng, K. (Stephen), Jeff Kolesky, Jonathan Thornton,
878
- Jordon Bedwell, Jussi Kinnula, Júnior Messias, Kyle O’Brien, Manmeet Gill,
879
- Mark H. Wilkinson, Marko Locher, Mertcan GÖKGÖZ, Michal Švácha, Mike
880
- Kasberg, Nadjib Amar, Nicolas Hoizey, Nicolas Porcel, Parker Moore, Pat
881
- Hawks, Patrick Marsceill, Stephen Checkoway, Stuart Kent, XhmikosR, Zlatan
882
- Vasović, mertkahyaoglu, shingo-nakanishi, and vohedge.</p>
883
-
884
- <p><a href="/docs/history/#v3-3-0">Full release notes</a> are available
885
- for your perusal. If you notice any issues, please don’t hesitate to file a
886
- bug report.</p>
887
-
888
- <p>Happy Jekylling!</p>
889
-
890
- </div>
891
- </article>
892
-
893
-
894
- <article>
895
- <h2>
896
- <a href="/news/2016/08/24/jekyll-admin-initial-release/">
897
- Jekyll Admin Initial Release
898
- </a>
899
- </h2>
900
- <span class="post-category">
901
- <span class="label">
902
- community
903
- </span>
904
- </span>
905
- <div class="post-meta">
906
- <span class="post-date">
907
- 24 Aug 2016
908
- </span>
909
- <a href="https://github.com/mertkahyaoglu" class="post-author">
910
-
911
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mertkahyaoglu?v=3&amp;s=24" alt="mertkahyaoglu" srcset="https://avatars0.githubusercontent.com/mertkahyaoglu?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mertkahyaoglu?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mertkahyaoglu?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mertkahyaoglu?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
912
- mertkahyaoglu
913
- </a>
914
- </div>
915
- <div class="post-content">
916
- <p><a href="https://jekyllrb.com/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">Jekyll’s Google Summer of Code Project</a> has concluded. After three months of hard (but fun) work with my mentors <a href="https://github.com/benbalter" class="user-mention">@benbalter</a>, <a href="https://github.com/jldec" class="user-mention">@jldec</a>, and <a href="https://github.com/parkr" class="user-mention">@parkr</a>, I’m proud to announce <a href="https://github.com/jekyll/jekyll-admin">Jekyll Admin</a>’s <a href="https://github.com/jekyll/jekyll-admin/releases/tag/v0.1.0">initial release</a>. Jekyll admin is a Jekyll plugin that provides users with a traditional CMS-style graphical interface to author content and administer Jekyll sites. You can start to use it right away by following <a href="https://github.com/jekyll/jekyll-admin#installation">these instructions</a>.</p>
917
-
918
- <p>As a Google Summer of Code student, I feel very lucky to be part of a project that the community has been wanting for such a long time. The three-month Google Summer of Code period was a great journey. It was a lot of fun developing the project and seeing how it could help the community, and going forward, we are really excited to see where the project goes with the help of the amazing Jekyll community.</p>
919
-
920
- <p>I would like to thank my mentors who embraced me as their teammate and guided me throughout the process. They have put a lot of work and time to mentor me and helped me with everything. It was a great pleasure to work with them. I also would like to thank the wonderful Jekyll community for making Jekyll what it is today. It was amazing to see the community contribute to the project and give their feedback
921
- prior to its release. I’m sure that they will support Jekyll Admin as much as they can and move Jekyll even further.</p>
922
-
923
- <p>Please let us know what you think about <a href="https://github.com/jekyll/jekyll-admin">Jekyll Admin</a> and feel free to <a href="https://github.com/jekyll/jekyll-admin/blob/master/.github/CONTRIBUTING.md">contribute</a>. Your feedback and contributions are greatly appreciated.</p>
924
-
925
- <p>Happy (graphical) Jekylling!</p>
926
-
927
- </div>
928
- </article>
929
-
930
-
931
- <article>
932
- <h2>
933
- <a href="/news/2016/08/02/jekyll-3-2-1-released/">
934
- Jekyll 3.2.1 Released with Fix for Windows
935
- </a>
936
- </h2>
937
- <span class="post-category">
938
- <span class="label">
939
- release
940
- </span>
941
- </span>
942
- <div class="post-meta">
943
- <span class="post-date">
944
- 02 Aug 2016
945
- </span>
946
- <a href="https://github.com/parkr" class="post-author">
947
-
948
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
949
- parkr
950
- </a>
951
- </div>
952
- <div class="post-content">
953
- <p>Well, 3.2.0 has been a success, but with one fatal flaw: it doesn’t work on
954
- Windows! Sorry, Windows users. Hot on the trail of 3.2.0, this release
955
- should squash that <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle">. Sorry about that!</p>
956
-
957
- <p>This release also fixes an issue when using <a href="/docs/themes/">gem-based themes</a>
958
- where the theme was rejected if it existed behind a symlink. This is a
959
- common setup for the various ruby version managers, and for Ruby installed
960
- via Homebrew. Props to <a href="https://github.com/benbalter" class="user-mention">@benbalter</a> for fixing that up.</p>
961
-
962
- <p>Thanks to the contributors for this release: Adam Petrie, Ben Balter,
963
- Daniel Chapman, DirtyF, Gary Ewan Park, Jordon Bedwell, and Parker Moore.</p>
964
-
965
- <p>As always, you can see our full changelog on <a href="/docs/history/">the History page</a>.</p>
966
-
967
- <p>Happy Jekylling!</p>
968
-
969
- </div>
970
- </article>
971
-
972
-
973
- <article>
974
- <h2>
975
- <a href="/news/2016/07/26/jekyll-3-2-0-released/">
976
- Jekyll turns 3.2
977
- </a>
978
- </h2>
979
- <span class="post-category">
980
- <span class="label">
981
- release
982
- </span>
983
- </span>
984
- <div class="post-meta">
985
- <span class="post-date">
986
- 26 Jul 2016
987
- </span>
988
- <a href="https://github.com/parkr" class="post-author">
989
-
990
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
991
- parkr
992
- </a>
993
- </div>
994
- <div class="post-content">
995
- <p>Happy Day! Jekyll v3.2.0 is out, and packed full of goodies.</p>
996
-
997
- <p>Our flagship feature for this release has been <strong>themes</strong>. <em>Themes?!</em>, you
998
- say? Yes, proper, versionable, releasable, first-class themes. We’re pretty
999
- stoked about it and we hope you like building and using them. For now, it
1000
- only supports layouts, includes, and sass, but we have plans to include
1001
- static assets like images and CSS/JS in a future release. <a href="/docs/themes/">Read more about
1002
- it in the docs.</a> Our site template generated by <code class="highlighter-rouge">jekyll new</code>
1003
- now dogfoods this feature, using the <a href="https://github.com/jekyll/minima">minima</a> theme.</p>
1004
-
1005
- <p>Some other notable changes:</p>
1006
-
1007
- <ul>
1008
- <li>Symlinks are allowed as long as they target a file in the site source</li>
1009
- <li>Explicit support for Ruby 2.0.x was dropped</li>
1010
- <li>Added an <code class="highlighter-rouge">:after_init</code> Hook</li>
1011
- <li>Added a <code class="highlighter-rouge">where_exp</code> filter to provide more powerful filtering</li>
1012
- <li>Added a <code class="highlighter-rouge">link</code> liquid tag which can be used to generate URLs for any
1013
- post or document based on its path relative to the site source</li>
1014
- <li>… and lots more!</li>
1015
- </ul>
1016
-
1017
- <p>As always, there is <a href="/docs/history/#v3-2-0">a full list of changes</a> for
1018
- your perusal.</p>
1019
-
1020
- <p>Every release is made possible by the countless hours of hard work that our
1021
- fellow community members put into sending patches, filing thoughtful
1022
- patches, and so on. These release took the work of over 80 people:</p>
1023
-
1024
- <ul>
1025
- <li>Aaron Sky</li>
1026
- <li>Adam Hollett</li>
1027
- <li>ajhit406</li>
1028
- <li>Aki</li>
1029
- <li>Alex Hanselka</li>
1030
- <li>Alex Hoyau</li>
1031
- <li>Alex Ivkin</li>
1032
- <li>Alex Kitchens</li>
1033
- <li>Alex Plescan</li>
1034
- <li>Alex Wood</li>
1035
- <li>Anatoliy Yastreb</li>
1036
- <li>Andrew Artajos</li>
1037
- <li>Andrew Munsell</li>
1038
- <li>AndrewCz</li>
1039
- <li>Ankush Menat</li>
1040
- <li>Anthony Smith</li>
1041
- <li>Ben Balter</li>
1042
- <li>Brian Jones</li>
1043
- <li>Brint O’Hearn</li>
1044
- <li>Chayoung You</li>
1045
- <li>Chris Wells</li>
1046
- <li>chrisfinazzo</li>
1047
- <li>Clark Winkelmann</li>
1048
- <li>Dan Allen</li>
1049
- <li>David Von Lehman</li>
1050
- <li>David Zhang</li>
1051
- <li>Derek Gottlieb</li>
1052
- <li>Enes Gönültaş</li>
1053
- <li>EricH</li>
1054
- <li>Erick Sasse</li>
1055
- <li>Eugênio Cabral</li>
1056
- <li>Florian Thomas</li>
1057
- <li>Frank Taillandier</li>
1058
- <li>Henry Goodman</li>
1059
- <li>Henry Wright</li>
1060
- <li>Hugo Duksis</li>
1061
- <li>Hugo Giraudel</li>
1062
- <li>Jack Reed</li>
1063
- <li>Jamie Bilinski</li>
1064
- <li>Jeff Kolesky</li>
1065
- <li>Jens Willmer</li>
1066
- <li>Jordon Bedwell</li>
1067
- <li>Josh Waller</li>
1068
- <li>Joshua Barnett</li>
1069
- <li>Keegan Mullaney</li>
1070
- <li>Kevin Miller</li>
1071
- <li>Krzysztof Jurewicz</li>
1072
- <li>Loren Rogers</li>
1073
- <li>Marcos Brito</li>
1074
- <li>Marcus Stollsteimer</li>
1075
- <li>Matt Rogers</li>
1076
- <li>Michaël Guitton</li>
1077
- <li>Mike Linksvayer</li>
1078
- <li>Mike Neumegen</li>
1079
- <li>Nathan Hazout</li>
1080
- <li>Nick</li>
1081
- <li>No</li>
1082
- <li>nscyclone</li>
1083
- <li>Parker Moore</li>
1084
- <li>Pat Hawks</li>
1085
- <li>Pierre Fenoll</li>
1086
- <li>Praveen Kumar</li>
1087
- <li>Rares Vernica</li>
1088
- <li>Saleem Rashid</li>
1089
- <li>Sam Dutton</li>
1090
- <li>Shengbin Meng</li>
1091
- <li>Shinn Kondo</li>
1092
- <li>Shinnosuke Kondo</li>
1093
- <li>skim</li>
1094
- <li>Sondre Nilsen</li>
1095
- <li>Spencer A. Bywater</li>
1096
- <li>Stephen Checkoway</li>
1097
- <li>Suriyaa Kudo</li>
1098
- <li>surrim</li>
1099
- <li>TheLucasMoore</li>
1100
- <li>Thomas Wood</li>
1101
- <li>Tim Wisniewski</li>
1102
- <li>Tom Fejfar</li>
1103
- <li>Tony Garnock-Jones</li>
1104
- <li>Vincent Wochnik</li>
1105
- <li>XhmikosR</li>
1106
- <li>Yanis Vieilly</li>
1107
- <li>Yordis Prieto</li>
1108
- <li>Zack Spencer</li>
1109
- </ul>
1110
-
1111
- <p>We are so grateful to all of you for helping to put together a terrific
1112
- release. Thank you!</p>
1113
-
1114
- <p>Happy Jekylling!</p>
1115
-
1116
- </div>
1117
- </article>
1118
-
1119
-
1120
- <article>
1121
- <h2>
1122
- <a href="/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">
1123
- Jekyll's Google Summer of Code Project: The CMS You Always Wanted
1124
- </a>
1125
- </h2>
1126
- <span class="post-category">
1127
- <span class="label">
1128
- community
1129
- </span>
1130
- </span>
1131
- <div class="post-meta">
1132
- <span class="post-date">
1133
- 03 Jun 2016
1134
- </span>
1135
- <a href="https://github.com/parkr" class="post-author">
1136
-
1137
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1138
- parkr
1139
- </a>
1140
- </div>
1141
- <div class="post-content">
1142
- <p>This year, Jekyll applied to be a part of <a href="https://summerofcode.withgoogle.com/how-it-works/">Google Summer of Code</a>. Students were able to propose any project related to Jekyll. With a gracious sponsorship from GitHub and the participation of myself, <a href="https://github.com/benbalter" class="user-mention">@benbalter</a> and <a href="https://github.com/jldec" class="user-mention">@jldec</a>, Jekyll was able to accept two students for the 2016 season, <a href="https://github.com/mertkahyaoglu" class="user-mention">@mertkahyaoglu</a> and <a href="https://github.com/rush-skills" class="user-mention">@rush-skills</a>.</p>
1143
-
1144
- <p>These students are working on a project that fills a huge need for the community: <em>a graphical solution for managing your site’s content.</em> Current plans include a fully-integrated admin which spins up when you run jekyll serve and provides a friendly web interface for creating and editing your content. The server and web interface will speak a common HTTP interface so either piece could be switched out for, e.g. a server which writes directly to a repository on GitHub.</p>
1145
-
1146
- <p>The strength of text files as the storage medium for content has been part of Jekyll’s success. <a href="/">Our homepage</a> lauds the absence of a traditional SQL database when using Jekyll – your content should be what demands your time, not pesky database downtime. Unfortunately, understanding of the structure of a Jekyll site takes some work, enough that for some users, it’s prohibitive to using Jekyll to accomplish their publishing goals.</p>
1147
-
1148
- <p>Mert and Ankur both applied to take on this challenge and agreed to split the project, one taking on the web interface and the other taking on the backend. We’re very excited to see a fully-functional CMS for Jekyll at the end of the summer produced by these excellent community members, and we hope you’ll join us in cheering them on and sharing our gratitude for all their hard work.</p>
1149
-
1150
- <p>Thanks, as always, for being part of such a wonderful community that made this all possible. I’m honored to work with each of you to create something folks all around the globe find a joy to use. I look forward to our continued work to move Jekyll forward.</p>
1151
-
1152
- <p>As always, Happy Jekylling!</p>
1153
-
1154
- </div>
1155
- </article>
1156
-
1157
-
1158
- <article>
1159
- <h2>
1160
- <a href="/news/2016/05/19/jekyll-3-1-6-released/">
1161
- Jekyll 3.1.6 Released
1162
- </a>
1163
- </h2>
1164
- <span class="post-category">
1165
- <span class="label">
1166
- release
1167
- </span>
1168
- </span>
1169
- <div class="post-meta">
1170
- <span class="post-date">
1171
- 19 May 2016
1172
- </span>
1173
- <a href="https://github.com/parkr" class="post-author">
1174
-
1175
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1176
- parkr
1177
- </a>
1178
- </div>
1179
- <div class="post-content">
1180
- <p>Upon releasing 3.1.5 and kicking the tires, we noticed a glaring bug: our
1181
- beloved <code class="highlighter-rouge">jsonify</code> filter doesn’t work! With that, our work was cut out for
1182
- us and we decided a 3.1.6 was necessary. This release restores sanity to
1183
- our object-to-JSON generation in Liquid and we hope you enjoy.</p>
1184
-
1185
- <p>For the gory details, see <a href="https://github.com/jekyll/jekyll/pull/4914">the pull
1186
- request</a> or <a href="/docs/history/#v3-1-6">the
1187
- changelog</a>.</p>
1188
-
1189
- <p>Happy Jekylling!</p>
1190
-
1191
- </div>
1192
- </article>
1193
-
1194
-
1195
- <article>
1196
- <h2>
1197
- <a href="/news/2016/05/18/jekyll-3-1-5-released/">
1198
- Jekyll 3.1.5 Released
1199
- </a>
1200
- </h2>
1201
- <span class="post-category">
1202
- <span class="label">
1203
- release
1204
- </span>
1205
- </span>
1206
- <div class="post-meta">
1207
- <span class="post-date">
1208
- 18 May 2016
1209
- </span>
1210
- <a href="https://github.com/parkr" class="post-author">
1211
-
1212
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1213
- parkr
1214
- </a>
1215
- </div>
1216
- <div class="post-content">
1217
- <p>There’s always at least one bug, right? :)</p>
1218
-
1219
- <p>Hot on the trails of <a href="/news/2016/05/18/jekyll-3-1-4-released/">v3.1.4</a>, we
1220
- bring you v3.1.5! It fixes one bug around requiring the <code class="highlighter-rouge">ExcerptDrop</code>,
1221
- which only affects Linux. For the gory details, see <a href="https://github.com/jekyll/jekyll/pull/4912">the pull
1222
- request for the fix</a>.</p>
1223
-
1224
- <p>Happy Jekylling!</p>
1225
-
1226
- </div>
1227
- </article>
1228
-
1229
-
1230
- <article>
1231
- <h2>
1232
- <a href="/news/2016/05/18/jekyll-3-1-4-released/">
1233
- Jekyll 3.1.4 "Stability Sam" Released
1234
- </a>
1235
- </h2>
1236
- <span class="post-category">
1237
- <span class="label">
1238
- release
1239
- </span>
1240
- </span>
1241
- <div class="post-meta">
1242
- <span class="post-date">
1243
- 18 May 2016
1244
- </span>
1245
- <a href="https://github.com/parkr" class="post-author">
1246
-
1247
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1248
- parkr
1249
- </a>
1250
- </div>
1251
- <div class="post-content">
1252
- <p>Hey Jekyllites!</p>
1253
-
1254
- <p>Today, we released v3.1.4 in an effort to bring more stability to the v3.1.x series. This bugfix release consists of:</p>
1255
-
1256
- <ul>
1257
- <li>A fix for <code class="highlighter-rouge">layout</code> in Liquid where values would carry over from one document to the next</li>
1258
- <li>A fix for <code class="highlighter-rouge">layout</code> in Liquid where a parent layout (e.g. <code class="highlighter-rouge">default</code> or <code class="highlighter-rouge">base</code>) would overwrite the metadata of the child layout (e.g. <code class="highlighter-rouge">post</code> or <code class="highlighter-rouge">special</code>).</li>
1259
- <li>A fix where <code class="highlighter-rouge">page.excerpt</code> referencing its excerpt would cause an infinite loop of recursive horror.</li>
1260
- <li>We added <code class="highlighter-rouge">Configuration.from</code> and the great permalink fix from <a href="/news/2016/04/19/jekyll-3-0-4-released/">v3.0.4</a> to the v3.1.x series</li>
1261
- <li>
1262
- <code class="highlighter-rouge">site.collections</code> in Liquid is now sorted alphabetically by label, so <code class="highlighter-rouge">docs</code> shows up before <code class="highlighter-rouge">posts</code> reliably.</li>
1263
- </ul>
1264
-
1265
- <p>The fixes for <code class="highlighter-rouge">layout</code> may not be seamless for everyone, but we believe they will be the “right thing to do” going forward.</p>
1266
-
1267
- <p>We are alwawys striving to make Jekyll more straight-forward to use. Please do open an issue if you believe an aspect of Jekyll’s user experience isn’t up to par.</p>
1268
-
1269
- <p>For a full history of our changes, <a href="/docs/history/#v3-1-4">see the changelog</a>.</p>
1270
-
1271
- <p>As always, Happy Jekylling!</p>
1272
-
1273
- </div>
1274
- </article>
1275
-
1276
-
1277
- <article>
1278
- <h2>
1279
- <a href="/news/2016/04/26/jekyll-3-0-5-released/">
1280
- Jekyll 3.0.5 Released
1281
- </a>
1282
- </h2>
1283
- <span class="post-category">
1284
- <span class="label">
1285
- release
1286
- </span>
1287
- </span>
1288
- <div class="post-meta">
1289
- <span class="post-date">
1290
- 26 Apr 2016
1291
- </span>
1292
- <a href="https://github.com/parkr" class="post-author">
1293
-
1294
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1295
- parkr
1296
- </a>
1297
- </div>
1298
- <div class="post-content">
1299
- <p>This version fixes a bug affecting only v3.0.4 where autoregeneration was
1300
- <em>always</em> disabled when running Jekyll locally. This feature is a huge
1301
- reason why Jekyll (or any static site generator, for that matter) is a joy
1302
- to use. Sorry for the regression!</p>
1303
-
1304
- <p>If you’re using GitHub Pages, <a href="https://github.com/github/pages-gem/pull/285">you can follow the progress of the upgrade
1305
- on the github/pages-gem repo</a>.</p>
1306
-
1307
- <p>As always, our <a href="/docs/history/#v3-0-5">history doc</a> has links to the pull
1308
- requests and issues associated with the release for your perusal.</p>
1309
-
1310
- <p>We’re looking forward to the upcoming release of v3.2 which <a href="https://github.com/jekyll/jekyll/blob/master/History.markdown#head">has some
1311
- excellent goodies</a>
1312
- we think you’ll love.</p>
1313
-
1314
- <p>Happy Jekylling!</p>
1315
-
1316
- </div>
1317
- </article>
1318
-
1319
-
1320
- <article>
1321
- <h2>
1322
- <a href="/news/2016/04/19/jekyll-3-1-3-released/">
1323
- Jekyll 3.1.3 Released
1324
- </a>
1325
- </h2>
1326
- <span class="post-category">
1327
- <span class="label">
1328
- release
1329
- </span>
1330
- </span>
1331
- <div class="post-meta">
1332
- <span class="post-date">
1333
- 19 Apr 2016
1334
- </span>
1335
- <a href="https://github.com/parkr" class="post-author">
1336
-
1337
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1338
- parkr
1339
- </a>
1340
- </div>
1341
- <div class="post-content">
1342
- <p>v3.1.3 is a patch release which fixes the follow two issues:</p>
1343
-
1344
- <ul>
1345
- <li>Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source</li>
1346
- <li>Running <code class="highlighter-rouge">jekyll serve</code> with SSL enabled was broken due to a bad configuration.</li>
1347
- </ul>
1348
-
1349
- <p>Both of these issues have been resolved. For more information, check out <a href="/docs/history/#v3-1-3">the full history</a>.</p>
1350
-
1351
- <p>Happy Jekylling!</p>
1352
-
1353
- </div>
1354
- </article>
1355
-
1356
-
1357
- <article>
1358
- <h2>
1359
- <a href="/news/2016/04/19/jekyll-3-0-4-released/">
1360
- Jekyll 3.0.4 Released
1361
- </a>
1362
- </h2>
1363
- <span class="post-category">
1364
- <span class="label">
1365
- release
1366
- </span>
1367
- </span>
1368
- <div class="post-meta">
1369
- <span class="post-date">
1370
- 19 Apr 2016
1371
- </span>
1372
- <a href="https://github.com/parkr" class="post-author">
1373
-
1374
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1375
- parkr
1376
- </a>
1377
- </div>
1378
- <div class="post-content">
1379
- <p>v3.0.4 is a patch release which fixes the follow two issues:</p>
1380
-
1381
- <ul>
1382
- <li>Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source</li>
1383
- <li>Configuration for the posts permalink might be borked when a user specified a value for <code class="highlighter-rouge">collections.posts.permalink</code> directly. This forced the use of <code class="highlighter-rouge">permalink</code> at the top level, which also affected pages. To configure a permalink <em>just for posts</em>, you can do so with:</li>
1384
- </ul>
1385
-
1386
- <figure class="highlight"><pre><code class="language-yaml" data-lang="yaml"><span class="na">collections</span><span class="pi">:</span>
1387
- <span class="na">posts</span><span class="pi">:</span>
1388
- <span class="na">output</span><span class="pi">:</span> <span class="no">true</span>
1389
- <span class="na">permalink</span><span class="pi">:</span> <span class="s">/blog/:year/:title/</span></code></pre></figure>
1390
-
1391
- <p>Both of these issues have been resolved. For more information, check out <a href="/docs/history/#v3-0-4">the full history</a>.</p>
1392
-
1393
- <p>Happy Jekylling!</p>
1394
-
1395
- </div>
1396
- </article>
1397
-
1398
-
1399
- <article>
1400
- <h2>
1401
- <a href="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">
1402
- Making it easier to contribute to Jekyll
1403
- </a>
1404
- </h2>
1405
- <span class="post-category">
1406
- <span class="label">
1407
- community
1408
- </span>
1409
- </span>
1410
- <div class="post-meta">
1411
- <span class="post-date">
1412
- 10 Mar 2016
1413
- </span>
1414
- <a href="https://github.com/benbalter" class="post-author">
1415
-
1416
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=24" alt="benbalter" srcset="https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1417
- benbalter
1418
- </a>
1419
- </div>
1420
- <div class="post-content">
1421
- <p>Jekyll is an open source project, built one contribution at a time by community members just like you. These community contributions can come in many forms beyond just writing code, from reporting an issue or suggesting a new feature to improving documentation or providing feedback on proposed changes.</p>
1422
-
1423
- <p>If you’ve been looking to get involved with the Jekyll community, but didn’t know, we’ve recently made it easier to contribute to Jekyll in two ways:</p>
1424
-
1425
- <p>First, we’ve completely rewritten <a href="https://jekyllrb.com/docs/contributing/">the project’s contributing guidelines</a>, outlining <a href="https://jekyllrb.com/docs/contributing/#ways-to-contribute">the various ways you can contribute</a>, and including better instructions for <a href="https://jekyllrb.com/docs/contributing/#submitting-a-pull-request-via-githubcom">submitting proposed changes via GitHub.com</a> or for <a href="https://jekyllrb.com/docs/contributing/#code-contributions">submitting your first code improvement</a>. And if you have any feedback, we’d love to hear it! Simply click the “improve this page” button in the top right corner of the contributing documentation.</p>
1426
-
1427
- <p>Second, this week, we created six community interest groups, we’re calling <a href="https://teams.jekyllrb.com">Jekyll affinity teams</a>. If you’re interested in a particular aspect of the project (or just want to learn more), you can join any one of these teams (or two, or three), to participate in discussions about potential bugs and proposed improvements. And the best part is there’s no commitment. If you just want to listen, or if at any point you want to leave (or switch teams), that’s totally fine. We won’t say a thing. To learn more about the various affinity teams, or to join one (please do!), just head on over to <a href="https://teams.jekyllrb.com/">teams.jekyllrb.com</a>.</p>
1428
-
1429
- <p>We hope these changes will make it easier for you to make your first (or second, or third) contribution to Jekyll today. Thanks for helping to make Jekyll awesome!</p>
1430
-
1431
- </div>
1432
- </article>
1433
-
1434
-
1435
- <article>
1436
- <h2>
1437
- <a href="/news/2016/02/19/jekyll-3-1-2-released/">
1438
- Jekyll 3.1.2 Released!
1439
- </a>
1440
- </h2>
1441
- <span class="post-category">
1442
- <span class="label">
1443
- release
1444
- </span>
1445
- </span>
1446
- <div class="post-meta">
1447
- <span class="post-date">
1448
- 19 Feb 2016
1449
- </span>
1450
- <a href="https://github.com/parkr" class="post-author">
1451
-
1452
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1453
- parkr
1454
- </a>
1455
- </div>
1456
- <div class="post-content">
1457
- <p>Happy Friday from sunny California! Today, we’re excited to announce the release of Jekyll v3.1.2, which comes with some crucial bug fixes:</p>
1458
-
1459
- <ul>
1460
- <li>If a syntax error is encountered by Liquid, it will now print the line number.</li>
1461
- <li>A nasty war between symbols and strings in our configuration hash caused kramdown syntax highlighting to break. That has been resolved; you stand victorious!</li>
1462
- <li>A tilde at the beginning of a filename will no longer crash Jekyll.</li>
1463
- <li>The <code class="highlighter-rouge">titleize</code> filter mistakenly dropped words that were already capitalized. Fixed!</li>
1464
- <li>Permalinks which end in a slash will now always output as a folder with an <code class="highlighter-rouge">index.html</code> inside.</li>
1465
- </ul>
1466
-
1467
- <p>Nitty-gritty details, like always, are available in the <a href="/docs/history/">history</a>.</p>
1468
-
1469
- <p>Thanks to those who contributed to this release: Alfred Xing, atomicules, bojanland, Brenton Horne, Carlos Garcés, Cash Costello, Chris, chrisfinazzo, Daniel Schildt, Dean Attali, Florian Thomas, Jordon Bedwell, Juuso Mikkonen, Katya Demidova, lonnen, Manabu Sakai, Michael Lee, Michael Lyons, Mitesh Shah, Nicolas Hoizey, Parker Moore, Pat Hawks, Prayag Verma, Robert Martin, Suriyaa Kudo, and toshi.</p>
1470
-
1471
- </div>
1472
- </article>
1473
-
1474
-
1475
- <article>
1476
- <h2>
1477
- <a href="/news/2016/02/08/jekyll-3-0-3-released/">
1478
- Jekyll 3.0.3 Released
1479
- </a>
1480
- </h2>
1481
- <span class="post-category">
1482
- <span class="label">
1483
- release
1484
- </span>
1485
- </span>
1486
- <div class="post-meta">
1487
- <span class="post-date">
1488
- 08 Feb 2016
1489
- </span>
1490
- <a href="https://github.com/parkr" class="post-author">
1491
-
1492
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1493
- parkr
1494
- </a>
1495
- </div>
1496
- <div class="post-content">
1497
- <p><a href="https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0">GitHub Pages upgraded to Jekyll 3.0.2</a> last week. With a testbed of
1498
- over a million sites, this really put Jekyll 3 through the wringer. This
1499
- release addresses a handful of bugs that were surfaced as a result. The
1500
- fixes:</p>
1501
-
1502
- <ul>
1503
- <li>Fix problem where outputting to a folder would have two extensions</li>
1504
- <li>Handle tildes (<code class="highlighter-rouge">~</code>) in filenames properly</li>
1505
- <li>Fix issue when comparing documents without dates</li>
1506
- <li>Include line numbers in liquid error output</li>
1507
- </ul>
1508
-
1509
- <p>Read more on the <a href="/docs/history/#v3-0-3">changelog</a> with links to the
1510
- related patches.</p>
1511
-
1512
- <p>Please keep <a href="https://github.com/jekyll/jekyll/issues">submitting bugs</a> as you find them! Please do take a look
1513
- <a href="/help/">in our various help resources</a> before filing a bug and use <a href="https://talk.jekyllrb.com/">our
1514
- forum</a> for asking questions and getting help on a specific problem
1515
- you’re having.</p>
1516
-
1517
- <p>Happy Jekylling!</p>
1518
-
1519
-
1520
- </div>
1521
- </article>
1522
-
1523
-
1524
- <article>
1525
- <h2>
1526
- <a href="/news/2016/01/28/jekyll-3-1-1-released/">
1527
- Jekyll 3.1.1 Released
1528
- </a>
1529
- </h2>
1530
- <span class="post-category">
1531
- <span class="label">
1532
- release
1533
- </span>
1534
- </span>
1535
- <div class="post-meta">
1536
- <span class="post-date">
1537
- 28 Jan 2016
1538
- </span>
1539
- <a href="https://github.com/parkr" class="post-author">
1540
-
1541
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1542
- parkr
1543
- </a>
1544
- </div>
1545
- <div class="post-content">
1546
- <p>This release squashes a few bugs <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> <img class="emoji" title=":bug:" alt=":bug:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f41b.png" height="20" width="20" align="absmiddle"> noticed by a few
1547
- wonderful Jekyll users:</p>
1548
-
1549
- <ul>
1550
- <li>If your <code class="highlighter-rouge">permalink</code> ended with a <code class="highlighter-rouge">/</code>, your URL didn’t have any extension,
1551
- even if you wanted one</li>
1552
- <li>We now strip the BOM by default per Ruby’s <code class="highlighter-rouge">IO.open</code>.</li>
1553
- <li>
1554
- <code class="highlighter-rouge">page.dir</code> will not always end in a slash.</li>
1555
- </ul>
1556
-
1557
- <p>We also updated our <a href="/docs/conduct/">Code of Conduct</a> to the latest version of
1558
- the Contributor Covenant. The update includes language to ensure that the
1559
- reporter of the incident remains confidential to non-maintainers and that
1560
- all complaints will result in an appropriate response. I care deeply about
1561
- Jekyll’s community and will do everything in my power to ensure it is a
1562
- welcoming community. Feel free to reach out to me directly if you feel
1563
- there is a way we can improve the community for everyone! If you’re
1564
- interested in more details, <a href="https://github.com/ContributorCovenant/contributor_covenant/blob/v1_4/diffs/1_3_vs_1_4.patch">there is a diff for
1565
- that</a>.</p>
1566
-
1567
- <p>See links to the PR’s on <a href="/docs/history/#v3-1-1">the history page</a>.</p>
1568
-
1569
- <p>Thanks to Jordon Bedwell, chrisfinazzo, Kroum Tzanev, David Celis, and
1570
- Alfred Xing for their commits on this latest release! <img class="emoji" title=":sparkles:" alt=":sparkles:" src="https://assets-cdn.github.com/images/icons/emoji/unicode/2728.png" height="20" width="20" align="absmiddle"></p>
1571
-
1572
- <p>Happy Jekylling!</p>
1573
-
1574
- </div>
1575
- </article>
1576
-
1577
-
1578
- <article>
1579
- <h2>
1580
- <a href="/news/2016/01/24/jekyll-3-1-0-released/">
1581
- Jekyll 3.1.0 Released
1582
- </a>
1583
- </h2>
1584
- <span class="post-category">
1585
- <span class="label">
1586
- release
1587
- </span>
1588
- </span>
1589
- <div class="post-meta">
1590
- <span class="post-date">
1591
- 24 Jan 2016
1592
- </span>
1593
- <a href="https://github.com/parkr" class="post-author">
1594
-
1595
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1596
- parkr
1597
- </a>
1598
- </div>
1599
- <div class="post-content">
1600
- <p>Happy weekend! To make your weekend all the better, we have just released
1601
- v3.1.0 of Jekyll.</p>
1602
-
1603
- <p>There are <em>lots</em> of great performance improvements, including a huge one
1604
- which is to use Liquid drops instead of hashes. Much of the slowness in
1605
- Jekyll is due to Jekyll making lots of objects it doesn’t need to make.
1606
- By making these objects only as they’re needed, we can speed up Jekyll
1607
- considerably!</p>
1608
-
1609
- <p>Some other highlights:</p>
1610
-
1611
- <ul>
1612
- <li>Fix: <code class="highlighter-rouge">permalink</code>s with non-HTML extensions will not be honored</li>
1613
- <li>Fix: <code class="highlighter-rouge">jekyll clean</code> now accepts build flags like <code class="highlighter-rouge">--source</code>.</li>
1614
- <li>Enhancement: <code class="highlighter-rouge">include</code> tags can now accept multiple liquid variables</li>
1615
- <li>Feature: adds new <code class="highlighter-rouge">sample</code> liquid tag which gets random element from an array</li>
1616
- <li>Fix: Jekyll will read in files with YAML front matter that has extraneous
1617
- spaces after the first line</li>
1618
- <li>Enhancement: extract the <code class="highlighter-rouge">title</code> attribute from the filename for
1619
- collection items without a date</li>
1620
- <li>Fix: gracefully handle empty configuration files</li>
1621
- </ul>
1622
-
1623
- <p>… and <a href="/docs/history/#v3-1-0">a whole bunch more</a>!</p>
1624
-
1625
- <p>Please <a href="https://github.com/jekyll/jekyll/issues/new?title=Jekyll+3.1.0+Issue:">file a bug</a>
1626
- if you encounter any issues! As always, <a href="https://talk.jekyllrb.com">Jekyll Talk</a>
1627
- is the best place to get help if you’re encountering a problem.</p>
1628
-
1629
- <p>Special thanks to all our amazing contributors who helped make v3.1.0 a
1630
- possibility:</p>
1631
-
1632
- <p>Alex J Best, Alexander Köplinger, Alfred Xing, Alistair Calder, Atul
1633
- Bhosale, Ben Orenstein, Chi Trung Nguyen, Conor O’Callaghan, Craig P.
1634
- Motlin, Dan K, David Burela, David Litvak Bruno, Decider UI, Ducksan Cho,
1635
- Florian Thomas, James Wen, Jordon Bedwell, Joseph Wynn, Kakoma, Liam
1636
- Bowers, Mike Neumegen, Nick Quaranto, Nielsen Ramon, Olivér Falvai, Pat
1637
- Hawks, Paul Robert Lloyd, Pedro Euko, Peter Suschlik, Sam Volin, Samuel
1638
- Wright, Sasha Friedenberg, Tim Cuthbertson, Vincent Wochnik, William
1639
- Entriken, Zshawn Syed, chrisfinazzo, ducksan cho, leethomas,
1640
- midnightSuyama, musoke, and rebornix</p>
1641
-
1642
- <p>Happy Jekylling!</p>
1643
-
1644
- </div>
1645
- </article>
1646
-
1647
-
1648
- <article>
1649
- <h2>
1650
- <a href="/news/2016/01/20/jekyll-3-0-2-released/">
1651
- Jekyll 3.0.2 Released
1652
- </a>
1653
- </h2>
1654
- <span class="post-category">
1655
- <span class="label">
1656
- release
1657
- </span>
1658
- </span>
1659
- <div class="post-meta">
1660
- <span class="post-date">
1661
- 20 Jan 2016
1662
- </span>
1663
- <a href="https://github.com/parkr" class="post-author">
1664
-
1665
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1666
- parkr
1667
- </a>
1668
- </div>
1669
- <div class="post-content">
1670
- <p>A crucial bug was found in v3.0.1 which caused invalid post dates to go
1671
- unnoticed in the build chain until the error that popped up was unhelpful.
1672
- v3.0.2 <a href="https://github.com/jekyll/jekyll/issues/4375">throws errors as you’d expect</a>
1673
- when there is a post like <code class="highlighter-rouge">_posts/2016-22-01-future.md</code> or a post has an
1674
- invalid date like <code class="highlighter-rouge">date: "tuesday"</code> in their front matter.</p>
1675
-
1676
- <p>This should make the experience of working with Jekyll just a little
1677
- better.</p>
1678
-
1679
- <p>Happy Jekylling!</p>
1680
-
1681
- </div>
1682
- </article>
1683
-
1684
-
1685
- <article>
1686
- <h2>
1687
- <a href="/news/2015/11/17/jekyll-3-0-1-released/">
1688
- Jekyll 3.0.1 Released
1689
- </a>
1690
- </h2>
1691
- <span class="post-category">
1692
- <span class="label">
1693
- release
1694
- </span>
1695
- </span>
1696
- <div class="post-meta">
1697
- <span class="post-date">
1698
- 17 Nov 2015
1699
- </span>
1700
- <a href="https://github.com/parkr" class="post-author">
1701
-
1702
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1703
- parkr
1704
- </a>
1705
- </div>
1706
- <div class="post-content">
1707
- <p>Hey, folks! Bunch of bug fixes here. Notables:</p>
1708
-
1709
- <ul>
1710
- <li>Only superdirectories of <code class="highlighter-rouge">_posts</code> will be categories.</li>
1711
- <li>
1712
- <code class="highlighter-rouge">:title</code> in permalink templates are now properly cased as before</li>
1713
- <li>
1714
- <code class="highlighter-rouge">.jekyll-metadata</code> being erroneously written when not using incremental build.</li>
1715
- <li>Failure in liquid will now always fail the <code class="highlighter-rouge">jekyll</code> process.</li>
1716
- <li>All hooks should now be properly registered &amp; documented</li>
1717
- </ul>
1718
-
1719
- <p>And a bunch more changes which you can see over in the
1720
- <a href="/docs/history">changelog</a>.</p>
1721
-
1722
- <p>Thanks to the 17 developers who contributed code and documentation to this
1723
- patch release: Alfred Xing, Christian Trosell, Jordan Thornquest, Jordon
1724
- Bedwell, Larry Fox, Lawrence Murray, Lewis Cowles, Matt Rogers, Nicole
1725
- White, Parker Moore, Paul Robert Lloyd, Sarah Kuehnle, Vincent Wochnik,
1726
- Will Norris, XhmikosR, chrisfinazzo, and rebornix.</p>
1727
-
1728
- </div>
1729
- </article>
1730
-
1731
-
1732
- <article>
1733
- <h2>
1734
- <a href="/news/2015/10/26/jekyll-3-0-released/">
1735
- Jekyll 3.0 Released
1736
- </a>
1737
- </h2>
1738
- <span class="post-category">
1739
- <span class="label">
1740
- release
1741
- </span>
1742
- </span>
1743
- <div class="post-meta">
1744
- <span class="post-date">
1745
- 26 Oct 2015
1746
- </span>
1747
- <a href="https://github.com/parkr" class="post-author">
1748
-
1749
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1750
- parkr
1751
- </a>
1752
- </div>
1753
- <div class="post-content">
1754
- <p>The much-anticipated Jekyll 3.0 has been released! Key changes:</p>
1755
-
1756
- <ul>
1757
- <li>Incremental regeneration (experimental, enable with <code class="highlighter-rouge">--incremental</code>)</li>
1758
- <li>Liquid profiler (add <code class="highlighter-rouge">--profile</code> to a build or serve)</li>
1759
- <li>Hook plugin API (no more monkey-patching!)</li>
1760
- <li>Dependencies reduced from 14 to 8, none contain C extensions. We’re hoping to reduce this even more in the future.</li>
1761
- <li>Changed version support: no support for Ruby 1.9.3, added basic JRuby support. Better Windows support.</li>
1762
- <li>Extension-less URLs</li>
1763
- <li>
1764
- <code class="highlighter-rouge">site.collections</code> is an array of collections, thus:
1765
- <ul>
1766
- <li>
1767
- <code class="highlighter-rouge">collection[0]</code> becomes <code class="highlighter-rouge">collection.label</code>
1768
- </li>
1769
- <li>
1770
- <code class="highlighter-rouge">collection[1]</code> becomes <code class="highlighter-rouge">collection</code>
1771
- </li>
1772
- </ul>
1773
- </li>
1774
- <li>Default highlighter is now Rouge instead of Pygments</li>
1775
- <li>Lots of performance improvements</li>
1776
- <li>… and lots more!</li>
1777
- </ul>
1778
-
1779
- <p>We also added a <a href="/docs/conduct/">Code of Conduct</a> to encourage a happier, nicer community where contributions and discussion is protected from negative behaviour.</p>
1780
-
1781
- <p>A huge shout-out to the amazing Jekyll Core Team members Jordon Bedwell, Alfred Xing, and Matt Rogers for all their hard work in making Jekyll 3 the best release yet.</p>
1782
-
1783
- <p>We also added <a href="https://talk.jekyllrb.com">Jekyll Talk</a>, managed solely by Jordon, which offers a modern forum experience for Jekyllers across the globe to talk and learn about Jekyll!</p>
1784
-
1785
- <p>As always, check out the <a href="/docs/history/#v3-0-0">full history</a> for more details.</p>
1786
-
1787
- <p>Our contributors are the core of what makes Jekyll great! Many thanks to the 132 contributors who made this release possible (in alphabetical order): AJ Acevedo, Adam Richeimer, Alan Scherger, Alfred Xing, Anatol Broder, Andrew Dunning, Anna Debenham, Anton, Arne Gockeln, Arthur Hammer, Arthur Neves, BRAVO, Ben Balter, Bernardo Dias, BigBlueHat, Brandon Mathis, Bruce Smith, Cai⚡️, Carlos Matallín, ChaYoung You, Christian Vuerings, Cory Simmons, David Herman, David Silva Smith, David Smith, David Wales, David Williamson, DigitalSparky, Dimitri König, Dominik, Eduardo Boucas, Eduardo Bouças, Eduardo Bouças, Erlend Sogge Heggen, Eugene Pirogov, Ezmyrelda Andrade, Fabian Rodriguez, Fabian Tamp, Fabio Niephaus, Falko Richter, Florian Weingarten, Fonso, Garen Torikian, Guillaume LARIVIERE, Günter Kits, I´m a robot, Jason Ly, Jedd Ahyoung, Jensen Kuras, Jesse Pinho, Jesse W, Jim Meyer, Joel Glovier, Johan Bové, Joop Aué, Jordan Thornquest, Jordon Bedwell, Joseph Anderson, Julien Bourdeau, Justin Weiss, Kamil Dziemianowicz, Kevin Locke, Kevin Ushey, Leonard, Lukas, Mads Ohm Larsen, Malo Skrylevo, Marcus Stollsteimer, Mark Phelps, Mark Tareshawty, Martijn den Hoedt, Martin Jorn Rogalla, Martin Rogalla, Matt Rogers, Matt Sheehan, Matthias Nuessler, Max, Max Beizer, Max White, Merlos, Michael Giuffrida, Michael Tu, Mike Bland, Mike Callan, MonsieurV, Nate Berkopec, Neil Faccly, Nic West, Nicholas Burlett, Nicolas Hoizey, Parker Moore, Pascal Borreli, Pat Hawks, Paul Rayner, Pedro Euko, Peter Robins, Philipp Rudloff, Philippe Loctaux, Rafael Picanço, Renaud Martinet, Robert Papp, Ryan Burnette, Ryan Tomayko, Seb, Seth Warburton, Shannon, Stephen Crosby, Stuart Kent, Suriyaa Kudo, Sylvester Keil, Tanguy Krotoff, Toddy69, Tom Johnson, Tony Eichelberger, Tunghsiao Liu, Veres Lajos, Vitaly Repin, Will Norris, William Entriken, XhmikosR, chrisfinazzo, eksperimental, hartmel, jaybe@jekyll, kaatt, nightsense, nitoyon, robschia, schneems, sonnym, takuti, and tasken.</p>
1788
-
1789
- <p>Happy Jekylling!</p>
1790
-
1791
- </div>
1792
- </article>
1793
-
1794
-
1795
- <article>
1796
- <h2>
1797
- <a href="/news/2015/02/26/introducing-jekyll-talk/">
1798
- Join the Discussion at Jekyll Talk
1799
- </a>
1800
- </h2>
1801
- <span class="post-category">
1802
- <span class="label">
1803
- community
1804
- </span>
1805
- </span>
1806
- <div class="post-meta">
1807
- <span class="post-date">
1808
- 26 Feb 2015
1809
- </span>
1810
- <a href="https://github.com/alfredxing" class="post-author">
1811
-
1812
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/alfredxing?v=3&amp;s=24" alt="alfredxing" srcset="https://avatars0.githubusercontent.com/alfredxing?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/alfredxing?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/alfredxing?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/alfredxing?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1813
- alfredxing
1814
- </a>
1815
- </div>
1816
- <div class="post-content">
1817
- <p>We’re super excited to announce the launch of <a href="https://talk.jekyllrb.com">Jekyll Talk</a>, a Discourse forum for anything related to Jekyll!</p>
1818
-
1819
- <p>The forum was set up by <a href="https://github.com/envygeeks">@envygeeks</a> to build a community more accessible to Jekyll users and more suitable for general discussion.</p>
1820
-
1821
- <p>There’s already been a lot of interesting topics, including a <a href="https://talk.jekyllrb.com/t/showcase-sites-made-using-jekyll/18">site showcase</a> and <a href="https://talk.jekyllrb.com/t/poll-installation-priorities-for-3-0/106/9">a poll for Jekyll 3.0 priorities</a>.</p>
1822
-
1823
- <p>Come join the fun!</p>
1824
-
1825
- </div>
1826
- </article>
1827
-
1828
-
1829
- <article>
1830
- <h2>
1831
- <a href="/news/2015/01/24/jekyll-3-0-0-beta1-released/">
1832
- Jekyll 3.0.0.beta1 Released
1833
- </a>
1834
- </h2>
1835
- <span class="post-category">
1836
- <span class="label">
1837
- release
1838
- </span>
1839
- </span>
1840
- <div class="post-meta">
1841
- <span class="post-date">
1842
- 24 Jan 2015
1843
- </span>
1844
- <a href="https://github.com/parkr" class="post-author">
1845
-
1846
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1847
- parkr
1848
- </a>
1849
- </div>
1850
- <div class="post-content">
1851
- <p>Hey!</p>
1852
-
1853
- <p>Exciting news! First beta for Jekyll 3 is out. Check out the <a href="https://github.com/jekyll/jekyll/blob/v3.0.0.beta1/History.markdown#head">sizable
1854
- changelog</a>
1855
- to get a feel for what changes are afoot. Key features:</p>
1856
-
1857
- <ol>
1858
- <li>
1859
- <strong>Speed.</strong> Jekyll now features incremental regeneration and greatly
1860
- improved problematic code that caused slow-downs.</li>
1861
- <li>Gobs of bugfixes and customization.</li>
1862
- <li>Uniformity and sanity to Jekyll extensions of Liquid.</li>
1863
- </ol>
1864
-
1865
- <p>To install just run:</p>
1866
-
1867
- <figure class="highlight"><pre><code class="language-shell" data-lang="shell"><span class="nv">$ </span>gem install jekyll <span class="nt">--pre</span></code></pre></figure>
1868
-
1869
- <p>Future versions will include <a href="https://github.com/jekyll/jekyll/issues/3324">some awesome new
1870
- features</a> that we haven’t
1871
- built yet. If you see one you want to tackle, submit a PR &amp; you’ll be
1872
- featured in the Jekyll 3.0 release post as a contributor to that epic
1873
- release.</p>
1874
-
1875
- <p>Please file bugs as you encounter them, being sure to include your version
1876
- of Ruby, the Jekyll version, and (if possible) a link to your site so we
1877
- can reproduce.</p>
1878
-
1879
- <p>If you think there’s room for improvement in the UX, also do let us know.
1880
- We’re always looking to make Jekyll easier to use!</p>
1881
-
1882
- <p>Happy Jekylling!</p>
1883
-
1884
- </div>
1885
- </article>
1886
-
1887
-
1888
- <article>
1889
- <h2>
1890
- <a href="/news/2015/01/20/jekyll-meet-and-greet/">
1891
- Jekyll Meet &amp; Greet at GitHub HQ
1892
- </a>
1893
- </h2>
1894
- <span class="post-category">
1895
- <span class="label">
1896
- meetup
1897
- </span>
1898
- </span>
1899
- <div class="post-meta">
1900
- <span class="post-date">
1901
- 20 Jan 2015
1902
- </span>
1903
- <a href="https://github.com/parkr" class="post-author">
1904
-
1905
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1906
- parkr
1907
- </a>
1908
- </div>
1909
- <div class="post-content">
1910
- <p>Hey! Our friends at GitHub have agreed to host a Jekyll meet &amp; greet on
1911
- <strong>February 5, 2015 at 7pm</strong>. The event will be hosted at
1912
- <a href="https://goo.gl/maps/Bmy7i">GitHub’s Headquarters</a>
1913
- here in San Francisco, CA. Pizza &amp; beer will be available for those interested,
1914
- and there will be much time to sit and chat about all things Jekyll. This would
1915
- be an especially good time to get help with bugs you’ve encountered or to talk
1916
- over a potential feature with the core team in attendance.</p>
1917
-
1918
- <p>A special thanks to <a href="https://github.com/gjtorikian">@gjtorikian</a> for making this
1919
- all possible! You rock.</p>
1920
-
1921
- <p>We look forward to meeting all you fine folks. Cheers!</p>
1922
-
1923
- </div>
1924
- </article>
1925
-
1926
-
1927
- <article>
1928
- <h2>
1929
- <a href="/news/2014/12/22/jekyll-2-5-3-released/">
1930
- Jekyll Release for the Holidays! v2.5.3 Out
1931
- </a>
1932
- </h2>
1933
- <span class="post-category">
1934
- <span class="label">
1935
- release
1936
- </span>
1937
- </span>
1938
- <div class="post-meta">
1939
- <span class="post-date">
1940
- 22 Dec 2014
1941
- </span>
1942
- <a href="https://github.com/parkr" class="post-author">
1943
-
1944
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1945
- parkr
1946
- </a>
1947
- </div>
1948
- <div class="post-content">
1949
- <p>Happy Holidays, everyone.</p>
1950
-
1951
- <p>Jekyll v2.5.3 is a quick patch release, containing some minor fixes. See the
1952
- <a href="/docs/history/">full history</a> for more info. If you notice any problems,
1953
- please <a href="https://github.com/jekyll/jekyll-help">let us know</a>.</p>
1954
-
1955
- <p>This release also marks the start of Jekyll 3 development. I wrote about it
1956
- over on my personal blog: <a href="https://byparker.com/blog/2014/jekyll-3-the-road-ahead/">Jekyll 3 — The Road Ahead</a>.
1957
- Feel free to chime in over on GitHub.</p>
1958
-
1959
- <p>Happy Jekylling!</p>
1960
-
1961
- </div>
1962
- </article>
1963
-
1964
-
1965
- <article>
1966
- <h2>
1967
- <a href="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">
1968
- Alfred Xing has joined the Jekyll core team
1969
- </a>
1970
- </h2>
1971
- <span class="post-category">
1972
- <span class="label">
1973
- team
1974
- </span>
1975
- </span>
1976
- <div class="post-meta">
1977
- <span class="post-date">
1978
- 17 Dec 2014
1979
- </span>
1980
- <a href="https://github.com/parkr" class="post-author">
1981
-
1982
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
1983
- parkr
1984
- </a>
1985
- </div>
1986
- <div class="post-content">
1987
- <p>We’re excited to announce that <a href="https://github.com/alfredxing">@alfredxing</a> has joined the @jekyll/core
1988
- team!</p>
1989
-
1990
- <p>He hails from Vancouver, BC, Canada, where he is studying Economics and
1991
- Computer Science at the <a href="http://www.ubc.ca">University of British Columbia</a>. Alfred popped up in
1992
- the issues a few months ago with terrific insights, focus, and humility.
1993
- Performance buffs may be pleased to hear incremental regeneration will be
1994
- released in a future version of Jekyll – a significant piece of the
1995
- feature written by Alfred.</p>
1996
-
1997
- <p>Please join me in welcoming Alfred to the Jekyll core team. We’re excited
1998
- he’s agreed to lend his talents to this project. The future is an exciting
1999
- place!</p>
2000
-
2001
- <p>Happy Jekylling!</p>
2002
-
2003
-
2004
- </div>
2005
- </article>
2006
-
2007
-
2008
- <article>
2009
- <h2>
2010
- <a href="/news/2014/11/12/jekyll-2-5-2-released/">
2011
- Jekyll 2.5.2 Released
2012
- </a>
2013
- </h2>
2014
- <span class="post-category">
2015
- <span class="label">
2016
- release
2017
- </span>
2018
- </span>
2019
- <div class="post-meta">
2020
- <span class="post-date">
2021
- 12 Nov 2014
2022
- </span>
2023
- <a href="https://github.com/parkr" class="post-author">
2024
-
2025
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2026
- parkr
2027
- </a>
2028
- </div>
2029
- <div class="post-content">
2030
- <p>A very minor release, 2.5.2 fixes a bug with path sanitation that 2.5.1
2031
- introduced. It also improves the <code class="highlighter-rouge">post_url</code> tag such that it checks the
2032
- posts’ name (e.g. <code class="highlighter-rouge">2014-03-03-my-cool-post</code>) instead of a compiled time and
2033
- name. This fixes issues where posts are created and the day changes based
2034
- on timezone discrepancies.</p>
2035
-
2036
- <p><a href="/docs/history/">Full history here.</a></p>
2037
-
2038
- <p>Happy Jekylling!</p>
2039
-
2040
- </div>
2041
- </article>
2042
-
2043
-
2044
- <article>
2045
- <h2>
2046
- <a href="/news/2014/11/09/jekyll-2-5-1-released/">
2047
- Jekyll 2.5.1 Released
2048
- </a>
2049
- </h2>
2050
- <span class="post-category">
2051
- <span class="label">
2052
- release
2053
- </span>
2054
- </span>
2055
- <div class="post-meta">
2056
- <span class="post-date">
2057
- 09 Nov 2014
2058
- </span>
2059
- <a href="https://github.com/parkr" class="post-author">
2060
-
2061
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2062
- parkr
2063
- </a>
2064
- </div>
2065
- <div class="post-content">
2066
- <p>Hot on the heels of v2.5.0, this release brings relief to our Windows
2067
- users. It includes a fix for a 2.5.0 path sanitation change that has been
2068
- confirmed to work on Windows.</p>
2069
-
2070
- <p>To our Windows users: while we don’t officially support Windows, we don’t
2071
- wish to impede your normal use of Jekyll at all. Our lack of full support
2072
- for Windows is due to our lack of a Windows machine for development testing
2073
- (no one on the core team has a Windows machine upon which to test new
2074
- release candidates), not due to any malice or willful oversight. If you
2075
- come to us with an issue, we are more than happy to work through it with
2076
- you to come to a solution that works for all platforms. Along those lines,
2077
- we have created a <a href="https://github.com/jekyll/jekyll/issues/3069"><strong>Windows Test Force</strong></a> (WTF) which is a group of Jekyll
2078
- users dedicated to making sure all future releases work on Windows <em>before</em>
2079
- they’re released so we don’t have this issue again. A special thanks goes
2080
- out to the initial WTF team members, XhmikosR, Julian Thilo, Pedro Rogério,
2081
- and Alfred Xing.</p>
2082
-
2083
- <p>Happy Jekylling!</p>
2084
-
2085
-
2086
- </div>
2087
- </article>
2088
-
2089
-
2090
- <article>
2091
- <h2>
2092
- <a href="/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/">
2093
- Jekyll's Mid-Life Crisis (Or, Jekyll turns 2.5.0)
2094
- </a>
2095
- </h2>
2096
- <span class="post-category">
2097
- <span class="label">
2098
- release
2099
- </span>
2100
- </span>
2101
- <div class="post-meta">
2102
- <span class="post-date">
2103
- 05 Nov 2014
2104
- </span>
2105
- <a href="https://github.com/parkr" class="post-author">
2106
-
2107
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2108
- parkr
2109
- </a>
2110
- </div>
2111
- <div class="post-content">
2112
- <p>A new day, a new release! Jekyll just turned 2.5.0 and has gained a lot of
2113
- wisdom along the way. This 2.5.0 release also comes just a few weeks after
2114
- Jekyll turned 6 years old! In fashion, we’re celebrating this huge
2115
- milestone with a pretty big release. What’s changed in 2.5.0? Here are some
2116
- highlights:</p>
2117
-
2118
- <ul>
2119
- <li>Require plugins in the <code class="highlighter-rouge">:jekyll_plugins</code> Gemfile group (turned off with an environment variable)</li>
2120
- <li>YAML Front Matter permalinks can now contain placeholders like <code class="highlighter-rouge">:name</code>. Check out all the placeholders on the <a href="/docs/permalinks/">Permalinks docs page</a>.</li>
2121
- <li>The <code class="highlighter-rouge">jsonify</code> filter now deep-converts arrays to liquid.</li>
2122
- <li>Shorted <code class="highlighter-rouge">build</code> and <code class="highlighter-rouge">serve</code> commands with <code class="highlighter-rouge">b</code> and <code class="highlighter-rouge">s</code> aliases, respectively</li>
2123
- <li>WEBrick will now list your directory if it can’t find an index file.</li>
2124
- <li>Any enumerable can be used with the <code class="highlighter-rouge">where</code> filter.</li>
2125
- <li>Performance optimizations thanks to <a href="https://github.com/tmm1" class="user-mention">@tmm1</a>’s <a href="https://github.com/tmm1/stackprof">stackprof</a>
2126
- </li>
2127
- <li>Fix for Rouge’s Redcarpet interface</li>
2128
- <li>Security auditors will love this: path sanitation has now been centralized.</li>
2129
- <li>Specify a log level with <code class="highlighter-rouge">JEKYLL_LOG_LEVEL</code>: debug, info, warn, or error.</li>
2130
- </ul>
2131
-
2132
- <p>…and a whole bunch of other fixes and enhancements you can read more
2133
- about in <a href="/docs/history/">the changelog!</a></p>
2134
-
2135
- <p>As always, if you run into issues, please <a href="https://github.com/jekyll/jekyll/issues">check the issues</a>
2136
- and <a href="https://github.com/jekyll/jekyll/issues/new">create an issue if one doesn’t exist for the bug you encountered</a>.
2137
- If you just need some help, the extraordinary <a href="https://github.com/jekyll/jekyll-help">jekyll help team is here for
2138
- you!</a></p>
2139
-
2140
- <p><em>When was the <a href="https://github.com/jekyll/jekyll/commit/d189e05d236769c1e5594af9db4d6eacb86fc16e">first commit to Jekyll</a>?
2141
- All the way back on October 19, 2008. It features interesting historical
2142
- tidbits, such as the old name for Jekyll was “autoblog”, and was first
2143
- released via Rubyforge. What a difference 6 years has made!</em></p>
2144
-
2145
- <p>Thanks to the following contributors for making this release possible:</p>
2146
-
2147
- <p>Parker Moore, XhmikosR, Alfred Xing, Ruslan Korolev, Pat Hawks,
2148
- chrisfinazzo, Mike Kruk, Tanguy Krotoff, Matt Hickford, Philipp Rudloff,
2149
- Rob Murray, Sean Collins, Seth Warburton, Tom Thorogood, Vasily Vasinov,
2150
- Veres Lajos, feivel, mitaa, nitoyon, snrbrnjna, tmthrgd, Bret Comnes,
2151
- Charles Baynham, Christian Mayer, Dan Croak, Frederic Hemberger, Glauco
2152
- Custódio, Igor Kapkov, and Kevin Ndung’u!</p>
2153
-
2154
- </div>
2155
- </article>
2156
-
2157
-
2158
- <article>
2159
- <h2>
2160
- <a href="/news/2014/09/09/jekyll-2-4-0-released/">
2161
- A Wild Jekyll 2.4.0 Appeared!
2162
- </a>
2163
- </h2>
2164
- <span class="post-category">
2165
- <span class="label">
2166
- release
2167
- </span>
2168
- </span>
2169
- <div class="post-meta">
2170
- <span class="post-date">
2171
- 09 Sep 2014
2172
- </span>
2173
- <a href="https://github.com/parkr" class="post-author">
2174
-
2175
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2176
- parkr
2177
- </a>
2178
- </div>
2179
- <div class="post-content">
2180
- <p>Well, lookie here! A new release of Jekyll! v2.4.0 contains lots of goodies, including some brilliant new additions:</p>
2181
-
2182
- <ul>
2183
- <li>A new <code class="highlighter-rouge">relative_include</code> Liquid tag (<a href="https://github.com/jekyll/jekyll/issues/2870">#2870</a>)</li>
2184
- <li>Render Liquid in CoffeeScript files (<a href="https://github.com/jekyll/jekyll/issues/2830">#2830</a>)</li>
2185
- <li>Add 4 new array Liquid filters: <code class="highlighter-rouge">push</code>, <code class="highlighter-rouge">pop</code>, <code class="highlighter-rouge">shift</code>, and <code class="highlighter-rouge">unshift</code> (<a href="https://github.com/jekyll/jekyll/pull/2895">#2895</a>)</li>
2186
- <li>Auto-enable watch on ‘serve’ (<a href="https://github.com/jekyll/jekyll/issues/2858">#2858</a>). No more <code class="highlighter-rouge">-w</code>!</li>
2187
- <li>Add <code class="highlighter-rouge">:title</code> and <code class="highlighter-rouge">:name</code> to collection URL template fillers (<a href="https://github.com/jekyll/jekyll/issues/2864">#2864</a> &amp; <a href="https://github.com/jekyll/jekyll/issues/2799">#2799</a>)</li>
2188
- <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>
2189
- <li>Add <code class="highlighter-rouge">inspect</code> liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2867">#2867</a>)</li>
2190
- <li>Add a <code class="highlighter-rouge">slugify</code> Liquid filter (<a href="https://github.com/jekyll/jekyll/issues/2880">#2880</a>)</li>
2191
- </ul>
2192
-
2193
- <p>Some other wunderbar bug fixes in there as well. Check out the <a href="/docs/history/">full changelog</a> for the whole scoop.</p>
2194
-
2195
- <p>As always, many thanks to our amazing contributors who made this release possible: Chris Frederick, Garen Torikian, James Smith, Ruslan Korolev, Joel Glovier, Michael Kühnel, Minn Soe, Pat Hawks, Peter deHaan, Shu Uesugi, TJ, Zhuochun, Alfred Xing, nitoyon, Anatol Broder, Faruk AYDIN, Frederic Hemberger, and Gordon Gao. Thank you!!</p>
2196
-
2197
- <p>Happy Jekylling!</p>
2198
-
2199
- </div>
2200
- </article>
2201
-
2202
-
2203
- <article>
2204
- <h2>
2205
- <a href="/news/2014/08/10/jekyll-2-3-0-released/">
2206
- Jekyll 2.3.0 Released
2207
- </a>
2208
- </h2>
2209
- <span class="post-category">
2210
- <span class="label">
2211
- release
2212
- </span>
2213
- </span>
2214
- <div class="post-meta">
2215
- <span class="post-date">
2216
- 10 Aug 2014
2217
- </span>
2218
- <a href="https://github.com/parkr" class="post-author">
2219
-
2220
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2221
- parkr
2222
- </a>
2223
- </div>
2224
- <div class="post-content">
2225
- <p>This latest release of Jekyll includes a slew of enhancements and bug
2226
- fixes. Some of the highlights:</p>
2227
-
2228
- <ul>
2229
- <li>Strange bug around spacing/indentation should be resolved. <a href="https://github.com/jekyll/jekyll/issues/2676">It was a
2230
- curious bug indeed.</a>
2231
- </li>
2232
- <li>Pages, Posts, and Drafts can now be converted by multiple converters.</li>
2233
- <li>Static files can now be safely included in collections. They’ll be placed
2234
- in a <code class="highlighter-rouge">collection.files</code> array. <code class="highlighter-rouge">collection.docs</code> still holds exclusively
2235
- content with YAML front matter.</li>
2236
- <li>Sass files can once again be rendered by Liquid. However, neither Sass
2237
- nor CoffeeScript can ever have a layout. Bonus: <code class="highlighter-rouge">scssify</code> and <code class="highlighter-rouge">sassify</code>
2238
- Liquid filters.</li>
2239
- <li>Partial variables allowed now in the path argument of <code class="highlighter-rouge">include</code> calls</li>
2240
- <li>We added a <code class="highlighter-rouge">jekyll help</code> command. Pass it a subcommand to see more info
2241
- about that subcommand. Or don’t, to see the help for <code class="highlighter-rouge">jekyll</code> itself.</li>
2242
- <li>Lots of fixes to the site template we use for <code class="highlighter-rouge">jekyll new</code>, including
2243
- converting the CSS into SCSS.</li>
2244
- <li>The <code class="highlighter-rouge">jsonify</code> filter will now call <code class="highlighter-rouge">#to_liquid</code> for you</li>
2245
- <li>Lots, lots more!</li>
2246
- </ul>
2247
-
2248
- <p>One change deserves special note. In <a href="https://github.com/jekyll/jekyll/issues/2633">#2633</a>, subfolders <em>inside</em> a
2249
- <code class="highlighter-rouge">_posts</code> folder were processed and added as categories to the posts. It
2250
- turns out, this behaviour was unwanted by a large number of individuals, as
2251
- it is a handy way to organize posts. Ultimately, we decided to revert this
2252
- change in <a href="https://github.com/jekyll/jekyll/issues/2705">#2705</a>, because it was a change in behaviour that was already
2253
- well-established (at least since Jekyll v0.7.0), and was convenient.</p>
2254
-
2255
- <p>For more excellent CHANGELOG reading material, check out the <a href="/docs/history/">History
2256
- page</a>! Happy Jekylling!</p>
2257
-
2258
- </div>
2259
- </article>
2260
-
2261
-
2262
- <article>
2263
- <h2>
2264
- <a href="/news/2014/07/29/jekyll-2-2-0-released/">
2265
- Jekyll 2.2.0 Released
2266
- </a>
2267
- </h2>
2268
- <span class="post-category">
2269
- <span class="label">
2270
- release
2271
- </span>
2272
- </span>
2273
- <div class="post-meta">
2274
- <span class="post-date">
2275
- 29 Jul 2014
2276
- </span>
2277
- <a href="https://github.com/parkr" class="post-author">
2278
-
2279
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2280
- parkr
2281
- </a>
2282
- </div>
2283
- <div class="post-content">
2284
- <p>Jekyll 2.2.0 contains a few key updates:</p>
2285
-
2286
- <ol>
2287
- <li>A warning will now fire if you specify a layout in any of your pages or
2288
- posts that doesn’t exist.</li>
2289
- <li>Certain Pygments options are now whitelisted in safe mode</li>
2290
- <li>Categories in a post’s path are now respected (i.e. folders in <code class="highlighter-rouge">_posts</code>
2291
- will now work properly).</li>
2292
- </ol>
2293
-
2294
- <p>As always, a full list of the updates are on the
2295
- <a href="/docs/history/#v2-2-0">history page</a>. Happy Jekylling!</p>
2296
-
2297
- </div>
2298
- </article>
2299
-
2300
-
2301
- <article>
2302
- <h2>
2303
- <a href="/news/2014/07/01/jekyll-2-1-1-released/">
2304
- Jekyll 2.1.1 Released
2305
- </a>
2306
- </h2>
2307
- <span class="post-category">
2308
- <span class="label">
2309
- release
2310
- </span>
2311
- </span>
2312
- <div class="post-meta">
2313
- <span class="post-date">
2314
- 01 Jul 2014
2315
- </span>
2316
- <a href="https://github.com/parkr" class="post-author">
2317
-
2318
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2319
- parkr
2320
- </a>
2321
- </div>
2322
- <div class="post-content">
2323
- <p>This is a minor release for Jekyll 2.1.0. It fixes a couple bugs and
2324
- introduces fixes for a couple security-related issues.</p>
2325
-
2326
- <p>It covers two security vulnerabilities:</p>
2327
-
2328
- <ol>
2329
- <li>One in the reading of data</li>
2330
- <li>One in the <code class="highlighter-rouge">layouts</code> setting</li>
2331
- </ol>
2332
-
2333
- <p>They were identified in Jekyll 1.5.1 and has been confirmed as patched
2334
- in this version and the version used by GitHub Pages. If you are in the
2335
- business of building Jekyll sites, please ensure you upgrade to 2.1.1 as
2336
- soon as possible.</p>
2337
-
2338
- <p>For more, check out <a href="https://github.com/jekyll/jekyll/pull/2563"><code class="highlighter-rouge">jekyll/jekyll#2563</code></a>.</p>
2339
-
2340
- <p>Additionally, the dependency on Maruku has been loosened and a bug was
2341
- fixed with document URLs.</p>
2342
-
2343
- <p>As always, check out the <a href="/docs/history/">full changelog</a> for more info!</p>
2344
-
2345
- <p>Happy Jekylling!</p>
2346
-
2347
- </div>
2348
- </article>
2349
-
2350
-
2351
- <article>
2352
- <h2>
2353
- <a href="/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/">
2354
- Jekyll Turns 21! Err... I mean 2.1.0.
2355
- </a>
2356
- </h2>
2357
- <span class="post-category">
2358
- <span class="label">
2359
- release
2360
- </span>
2361
- </span>
2362
- <div class="post-meta">
2363
- <span class="post-date">
2364
- 28 Jun 2014
2365
- </span>
2366
- <a href="https://github.com/parkr" class="post-author">
2367
-
2368
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2369
- parkr
2370
- </a>
2371
- </div>
2372
- <div class="post-content">
2373
- <p>Jekyll’s finally <a href="https://en.wikipedia.org/wiki/Legal_drinking_age">legal to drink in the States</a>.
2374
- And he’s done a lot of learning in the process! Here are some of the new
2375
- things to look forward to:</p>
2376
-
2377
- <ul>
2378
- <li>Uses the latest Liquid version (2.6.1) (#2495)</li>
2379
- <li>Set front matter defaults for collections (#2419)</li>
2380
- <li>Set a collection-specific URL template (#2418)</li>
2381
- <li>
2382
- <code class="highlighter-rouge">pygments.rb</code> 0.6.0! (#2504)</li>
2383
- <li>
2384
- <code class="highlighter-rouge">.json</code> files in <code class="highlighter-rouge">_data</code> (#2369)</li>
2385
- <li>Allow subdirectories in <code class="highlighter-rouge">_data</code> (#2395)</li>
2386
- <li>Add support for <code class="highlighter-rouge">hl_lines</code> in <code class="highlighter-rouge">highlight</code> tag (#2532)</li>
2387
- <li>Post categories now merge with directory, front matter, and defaults (#2373)</li>
2388
- <li>New <code class="highlighter-rouge">--skip_initial_build</code> flag for <code class="highlighter-rouge">jekyll serve</code> (#2477)</li>
2389
- <li>A bajilion bug fixes and site updates!</li>
2390
- </ul>
2391
-
2392
- <p>Let’s go party!</p>
2393
-
2394
- <p><em>Check out the <a href="/docs/history/#v2-1-0">full changelog</a> for more.</em></p>
2395
-
2396
- <p>Many thanks to these 37 contributors for the 2.1.0 release:</p>
2397
-
2398
- <p>Alberto Grespan, Alessandro Lorenzi, Alex Medearis, Alfred Xing, Anatol Broder, Ben, Ben Balter, Bud Parr, Chezou, Denilson Figueiredo de Sá, Denilson Sá, Ivan Tse, Jens Nazarenus, Jesse Shawl, Jordon Bedwell, Josh Davis, János Rusiczki, Marc Ransome, Mathieu Bruyen, Matt Rogers, Parker Moore, Pat Hawks, Paul Henry, Peter Rhoades, Philipp Rudloff, Quinn Shanahan, Renaud Martinet, Rob Murray, Rodrigo Dumont, Simon Sarris, Terry, Terry Schmidt, Tomer Cohen, XhmikosR, Yihang Ho, jaybe@jekyll, and mikecole.</p>
2399
-
2400
- </div>
2401
- </article>
2402
-
2403
-
2404
- <article>
2405
- <h2>
2406
- <a href="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">
2407
- Pick Up your $1 Jekyll Sticker
2408
- </a>
2409
- </h2>
2410
- <span class="post-category">
2411
- <span class="label">
2412
- partners
2413
- </span>
2414
- </span>
2415
- <div class="post-meta">
2416
- <span class="post-date">
2417
- 04 Jun 2014
2418
- </span>
2419
- <a href="https://github.com/parkr" class="post-author">
2420
-
2421
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2422
- parkr
2423
- </a>
2424
- </div>
2425
- <div class="post-content">
2426
- <p><img src="/img/jekyll-sticker.jpg" alt="Jekyll Sticker"></p>
2427
-
2428
- <p>You may have heard that <a href="https://github.com/cobyism">@cobyism</a>’s excellent
2429
- Jekyll logo has been made into a sticker. You may have sat idly by, wishing
2430
- that you could have a sticker honoring your beloved Jekyll.</p>
2431
-
2432
- <p>The StickerMule team says, <em>“Pine no longer!”</em> StickerMule has <strong><a href="https://www.stickermule.com/marketplace/825-jekyll-stickers">discounted the
2433
- price of Jekyll stickers down to $1 and are offering free (domestic)
2434
- shipping</a>!</strong>
2435
- Go grab one now on the StickerMule marketplace – <a href="https://twitter.com/parkr/status/430826309707902976/photo/1">they’ll look
2436
- swell on your favourite hardware.</a></p>
2437
-
2438
- </div>
2439
- </article>
2440
-
2441
-
2442
- <article>
2443
- <h2>
2444
- <a href="/news/2014/05/08/jekyll-2-0-3-released/">
2445
- Jekyll 2.0.3 Released
2446
- </a>
2447
- </h2>
2448
- <span class="post-category">
2449
- <span class="label">
2450
- release
2451
- </span>
2452
- </span>
2453
- <div class="post-meta">
2454
- <span class="post-date">
2455
- 08 May 2014
2456
- </span>
2457
- <a href="https://github.com/parkr" class="post-author">
2458
-
2459
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2460
- parkr
2461
- </a>
2462
- </div>
2463
- <div class="post-content">
2464
- <p>Hey again! Just wanted to let you know we’ve released another version of Jekyll, jam-packed with bug fixes.</p>
2465
-
2466
- <p>A huge “thank you” is in order for all the folks who have submitted bug reports over the last 2 days — your input is what allows this project to continue. It’s always a pain to deal with a MAJOR version bump release, but it’s been pretty smooth so far and you have all been nice about the flaws you’ve found in the tool. Keep filing those reports so we can continue to make Jekyll even better!</p>
2467
-
2468
- <p>Thank you to the contributors that contributed code to 2.0.1, 2.0.2, and/or 2.0.3:</p>
2469
-
2470
- <p>Parker Moore, Yi Zeng, Gabe Ortiz, Aaron Broder, Alberto Grespan, gpxl, David Briggs, Kevin Ingersoll, and Troy Swanson.</p>
2471
-
2472
- <p>As always, check out the <a href="/docs/history/">changelog</a> for more info. Happy Jekylling!</p>
2473
-
2474
- </div>
2475
- </article>
2476
-
2477
-
2478
- <article>
2479
- <h2>
2480
- <a href="/news/2014/05/06/jekyll-turns-2-0-0/">
2481
- Jekyll turns 2.0.0
2482
- </a>
2483
- </h2>
2484
- <span class="post-category">
2485
- <span class="label">
2486
- release
2487
- </span>
2488
- </span>
2489
- <div class="post-meta">
2490
- <span class="post-date">
2491
- 06 May 2014
2492
- </span>
2493
- <a href="https://github.com/parkr" class="post-author">
2494
-
2495
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2496
- parkr
2497
- </a>
2498
- </div>
2499
- <div class="post-content">
2500
- <p>A year ago to the day, <a href="/news/2013/05/05/jekyll-1-0-0-released/">we released Jekyll 1.0.0</a>. One year later, we present to you the next major version: Jekyll 2.0.0.</p>
2501
-
2502
- <p>Jam-packed with some <a href="/docs/history/">highly-requested features and bugfixes galore</a>, this is the best Jekyll yet. Some notable changes:</p>
2503
-
2504
- <ol>
2505
- <li>
2506
- <a href="/docs/collections/">Collections</a> - Collections allow you to define an unlimited number of custom document types (beyond just posts and pages) for different types of content you may want to author in Jekyll such as API documentation or a cookbook!</li>
2507
- <li>
2508
- <a href="https://github.com/jekyll/jekyll/pull/2050#issuecomment-35938016">Brand new site template</a> (thanks <a href="https://github.com/jglovier">@jglovier</a>!) - Getting started with Jekyll just got a lot easier and a lot more beautiful. Just run <code class="highlighter-rouge">jekyll new &lt;path&gt;</code> and you’re good to go.</li>
2509
- <li>
2510
- <a href="/docs/assets/">Native Sass &amp; CoffeeScript support</a> - We love CSS and JavaScript as much as the next guy, but there will always be a special place in our hearts for Sass and CoffeeScript. We now offer native support for these file types — no more messing around with Rake or Grunt!</li>
2511
- <li>
2512
- <a href="/docs/configuration/#front-matter-defaults">YAML Front Matter defaults</a> - If you’ve set <code class="highlighter-rouge">layout: post</code> more than once in your life, you’ll love this new feature: set front matter defaults for a given directory or type.</li>
2513
- <li>
2514
- <a href="/docs/configuration/#custom-markdown-processors">Custom markdown processors</a> - Always wanted to use your favourite home-grown Markdown converter, but couldn’t with Jekyll? Now you can. Simply specify <code class="highlighter-rouge">markdown: MyConverterClass</code> and you’re on your way.</li>
2515
- <li>
2516
- <a href="/docs/templates/#filters">Addition of <code class="highlighter-rouge">where</code> and <code class="highlighter-rouge">group_by</code> Liquid filters</a> - Simplifying your Liquid templates one filter at a time. The <code class="highlighter-rouge">where</code> filter selects from an array all items within which have a given value for a property. The <code class="highlighter-rouge">group_by</code> filter groups all items in an array which have the same value for a given property.</li>
2517
- <li>
2518
- <a href="https://github.com/jekyll/jekyll/pull/1988">Switch from Maruku to Kramdown as default markdown converter</a> - Maruku is dead. We’ve replaced it with the converter which has the closest feature parity: Kramdown!</li>
2519
- </ol>
2520
-
2521
- <p>Check out our <a href="/docs/history/">changelog</a> for a complete list of all (200+) changes.</p>
2522
-
2523
- <p>Many thanks to these 183 contributors for making Jekyll 2.0.0 happen:</p>
2524
-
2525
- <p>Parker Moore, Matt Rogers, maul.esel, Anatol Broder, Zach Gersh, Joel Glovier, Ben Balter, XhmikosR, Coby Chapple, John Piasetzki, Aidan Feldman, Robin Dupret, Pascal Borreli, Troy Swanson, Erik Michaels-Ober, albertogg, Lucas Jenss, Matt Rogers &amp; Persa Zula, Eric Mill, Shigeya Suzuki, Jens Nazarenus, ddavison, Pat Hawks, Rob Wierzbowski, MURAOKA Taro, Casey Lang, Fabian Rodriguez, Greg Karékinian, Zlatan Vasović, Christopher Nicotera, Dmitry Chestnykh, Ryan Morrissey, Jordon, John Hughes, akira yamada, Matt Swanson, Jashank Jeremy, Matthew Iversen, Meeka, liufengyun, Anand Narayan, nitoyon, Geoff Shannon, Benjamin J. Balter, Juan Ignacio Donoso, David Briggs, Benjamin Esham, Slava Pavlutin, Assaf Gelber, Josh Brown, Nick Fagerlund, Davide Ficano, pilosus, Anthony Smith, André Arko, Mikael Konutgan, Matthew Scharley, Dan Tao, scribu, Mort Yao, m, Stephen McDonald, Marcus Stollsteimer, Thomas Torsney-Weir, Jordon Bedwell, Tom Preston-Werner, Lincoln Mullen, Philip Poots, Ivan Tse, Christopher Giroir, Valery Tolstov, Wlodek Bzyl, Xavier Noria, Yi Zeng, Persa Zula, Phil Leggetter, Pirogov Evgenij, Rafael Revi, Rob McGuire-Dale, Rob Muhlestein, Robin Mehner, Roland Warmerdam, Rusty Geldmacher, Sam Rayner, Santeri Paavolainen, Sebastian Morr, Stephan Groß, Steven Spasbo, Tobias Brunner, Tuomas Kareinen, Tyler Margison, Uwe Dauernheim, Yihang Ho, Zach Leatherman, Zequez, andrew morton, andrewhavens, imathis, jannypie, jaybe@jekyll, kk_Ataka, markets, redwallhp, schneems, szymzet, thomasdao, tomsugden, wǒis神仙, 张君君, Noah Slater, Abhi Yerra, Adam Heckler, Ahmed Hazem, Aigars Dzerviniks, Aleksey V. Zapparov, Andreas Möller, Andy Lindeman, Arlen Cuss, Aziz Shamim, Ben Baker-Smith, Ben Hanzl, Ben Hildred, Brian Kim, Brice, Carol Nichols, Chezou, Chris Jones, Christian Grobmeier, Christoph Hochstrasser, Christoph Schiessl, Clint Shryock, Colin Dean, Corey Ward, Damian Lettie, Daniel Schauenberg, David Ensinger, David Paschich, David Sawyer, David Silva Smith, Donald Perry, Doug Johnston, Edward Ball, Eric Dobson, Erik Dungan, Florent Guilleux, Francis, Frederic ROS, GSI2013, Garen Torikian, George Anderson, Giuseppe Capizzi, Ishibashi Hideto, Jarrod Birch, Jeff Kolesky, Jens Bissinger, Jens Krause, John Firebaugh, John Papandriopoulos, Josh Branchaud, Katy DeCorah, Lachlan Holden, Mark Prins, Markus Roth, Martin Charles, Matt Iversen, Matt Sheehan, Matt Swensen, Matthias Vogelgesang, Michael Parker, Miha Rekar, Nathan Youngman, Nick Quaranto, Nick Quinlan, Nick Schonning, Nicolas Alpi, Nicolás Reynolds, Nikkau, 4ensicLog, Octavian Damiean, Olov Lassus, PatrickC8t, Paul Annesley, and Paul Oppenheim.</p>
2526
-
2527
- <p>Happy developing!</p>
2528
-
2529
-
2530
- </div>
2531
- </article>
2532
-
2533
-
2534
- <article>
2535
- <h2>
2536
- <a href="/news/2014/03/27/jekyll-1-5-1-released/">
2537
- Jekyll 1.5.1 Released
2538
- </a>
2539
- </h2>
2540
- <span class="post-category">
2541
- <span class="label">
2542
- release
2543
- </span>
2544
- </span>
2545
- <div class="post-meta">
2546
- <span class="post-date">
2547
- 27 Mar 2014
2548
- </span>
2549
- <a href="https://github.com/parkr" class="post-author">
2550
-
2551
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2552
- parkr
2553
- </a>
2554
- </div>
2555
- <div class="post-content">
2556
- <p>The hawk-eyed <a href="https://github.com/gregose">@gregose</a> spotted a bug in our
2557
- <code class="highlighter-rouge">Jekyll.sanitized_path</code> code:</p>
2558
-
2559
- <figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="o">&gt;</span> <span class="n">sanitized_path</span><span class="p">(</span><span class="s2">"/tmp/foobar/jail"</span><span class="p">,</span> <span class="s2">"..c:/..c:/..c:/etc/passwd"</span><span class="p">)</span>
2560
- <span class="o">=&gt;</span> <span class="s2">"/tmp/foobar/jail/../../../etc/passwd"</span></code></pre></figure>
2561
-
2562
- <p>Well, we can’t have that! In 1.5.1, you’ll instead see:</p>
2563
-
2564
- <figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="o">&gt;</span> <span class="n">sanitized_path</span><span class="p">(</span><span class="s2">"/tmp/foobar/jail"</span><span class="p">,</span> <span class="s2">"..c:/..c:/..c:/etc/passwd"</span><span class="p">)</span>
2565
- <span class="o">=&gt;</span> <span class="s2">"/tmp/foobar/jail/..c:/..c:/..c:/etc/passwd"</span></code></pre></figure>
2566
-
2567
- <p>Luckily not affecting 1.4.x, this fix will make 1.5.0 that much safer for
2568
- the masses. Thanks, Greg!</p>
2569
-
2570
- </div>
2571
- </article>
2572
-
2573
-
2574
- <article>
2575
- <h2>
2576
- <a href="/news/2014/03/24/jekyll-1-5-0-released/">
2577
- Jekyll 1.5.0 Released
2578
- </a>
2579
- </h2>
2580
- <span class="post-category">
2581
- <span class="label">
2582
- release
2583
- </span>
2584
- </span>
2585
- <div class="post-meta">
2586
- <span class="post-date">
2587
- 24 Mar 2014
2588
- </span>
2589
- <a href="https://github.com/parkr" class="post-author">
2590
-
2591
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2592
- parkr
2593
- </a>
2594
- </div>
2595
- <div class="post-content">
2596
- <p>As work continues on Jekyll 2.0.0, we felt it was important to address two key
2597
- issues of Jekyll 1.4.3, namely the <code class="highlighter-rouge">safe_yaml</code> dependency below 1.0 and the
2598
- inability to use Jekyll 1.4.3 on Windows due to a <a href="https://github.com/jekyll/jekyll/issues/1948">fun issue with path sanitizing</a>.</p>
2599
-
2600
- <p>For a full changelog, check out our <a href="/docs/history/#v1-5-0">history</a> page.</p>
2601
-
2602
- <p>Now, back to work on 2.0.0!</p>
2603
-
2604
-
2605
- </div>
2606
- </article>
2607
-
2608
-
2609
- <article>
2610
- <h2>
2611
- <a href="/news/2014/01/13/jekyll-1-4-3-released/">
2612
- Jekyll 1.4.3 Released
2613
- </a>
2614
- </h2>
2615
- <span class="post-category">
2616
- <span class="label">
2617
- release
2618
- </span>
2619
- </span>
2620
- <div class="post-meta">
2621
- <span class="post-date">
2622
- 13 Jan 2014
2623
- </span>
2624
- <a href="https://github.com/benbalter" class="post-author">
2625
-
2626
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=24" alt="benbalter" srcset="https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/benbalter?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2627
- benbalter
2628
- </a>
2629
- </div>
2630
- <div class="post-content">
2631
- <p>Jekyll 1.4.3 contains two <strong>critical</strong> security fixes. If you run Jekyll locally
2632
- and do not run Jekyll in “safe” mode (e.g. you do not build Jekyll sites on behalf
2633
- of others), you are not affected and are not required to update at this time.
2634
- (<a href="https://github.com/jekyll/jekyll/pull/1944">See pull request.</a>)</p>
2635
-
2636
- <p>Versions of Jekyll prior to 1.4.3 and greater than 1.2.0 may allow malicious
2637
- users to expose the content of files outside the source directory in the
2638
- generated output via improper symlink sanitization, potentially resulting in an
2639
- inadvertent information disclosure.</p>
2640
-
2641
- <p>Versions of Jekyll prior to 1.4.3 may also allow malicious users to write
2642
- arbitrary <code class="highlighter-rouge">.html</code> files outside of the destination folder via relative path
2643
- traversal, potentially overwriting otherwise-trusted content with arbitrary HTML
2644
- or Javascript depending on your server’s configuration.</p>
2645
-
2646
- <p><em>Maintainer’s note: Many thanks to <a href="https://github.com/gregose" class="user-mention">@gregose</a> and <a href="https://github.com/charliesome" class="user-mention">@charliesome</a> for discovering
2647
- these vulnerabilities, and to <a href="https://github.com/BenBalter" class="user-mention">@BenBalter</a> and <a href="https://github.com/alindeman" class="user-mention">@alindeman</a> for writing the patch.</em></p>
2648
-
2649
- </div>
2650
- </article>
2651
-
2652
-
2653
- <article>
2654
- <h2>
2655
- <a href="/news/2013/12/16/jekyll-1-4-2-released/">
2656
- Jekyll 1.4.2 Released
2657
- </a>
2658
- </h2>
2659
- <span class="post-category">
2660
- <span class="label">
2661
- release
2662
- </span>
2663
- </span>
2664
- <div class="post-meta">
2665
- <span class="post-date">
2666
- 16 Dec 2013
2667
- </span>
2668
- <a href="https://github.com/parkr" class="post-author">
2669
-
2670
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2671
- parkr
2672
- </a>
2673
- </div>
2674
- <div class="post-content">
2675
- <p>This release fixes <a href="https://github.com/jekyll/jekyll/pull/1830">a regression</a> where Maruku fenced code blocks were turned
2676
- off, instead of the previous default to on. We’ve added a new default
2677
- configuration to our <code class="highlighter-rouge">maruku</code> config key: <code class="highlighter-rouge">fenced_code_blocks</code> and set it to
2678
- default to <code class="highlighter-rouge">true</code>.</p>
2679
-
2680
- <p>If you do not wish to use Maruku fenced code blocks, you may turn this option
2681
- off in your site’s configuration file.</p>
2682
-
2683
-
2684
- </div>
2685
- </article>
2686
-
2687
-
2688
- <article>
2689
- <h2>
2690
- <a href="/news/2013/12/09/jekyll-1-4-1-released/">
2691
- Jekyll 1.4.1 Released
2692
- </a>
2693
- </h2>
2694
- <span class="post-category">
2695
- <span class="label">
2696
- release
2697
- </span>
2698
- </span>
2699
- <div class="post-meta">
2700
- <span class="post-date">
2701
- 09 Dec 2013
2702
- </span>
2703
- <a href="https://github.com/mattr-" class="post-author">
2704
-
2705
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2706
- mattr-
2707
- </a>
2708
- </div>
2709
- <div class="post-content">
2710
- <p>Another quick turnover, anyone? A <a href="https://github.com/jekyll/jekyll/issues/1794">critical
2711
- bug</a> in the reading of
2712
- posts snuck itself into the 1.4.0 release.</p>
2713
-
2714
- <p>To address this issue, we’re releasing v1.4.1 of Jekyll so that you can
2715
- keep on writing without any problems.</p>
2716
-
2717
- <p>As always, you can find the full list of fixes in this release in the
2718
- <a href="/docs/history/">change log</a>!</p>
2719
-
2720
- </div>
2721
- </article>
2722
-
2723
-
2724
- <article>
2725
- <h2>
2726
- <a href="/news/2013/12/07/jekyll-1-4-0-released/">
2727
- Jekyll 1.4.0 Released
2728
- </a>
2729
- </h2>
2730
- <span class="post-category">
2731
- <span class="label">
2732
- release
2733
- </span>
2734
- </span>
2735
- <div class="post-meta">
2736
- <span class="post-date">
2737
- 07 Dec 2013
2738
- </span>
2739
- <a href="https://github.com/mattr-" class="post-author">
2740
-
2741
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2742
- mattr-
2743
- </a>
2744
- </div>
2745
- <div class="post-content">
2746
- <p>About a month after the release of Jekyll v1.3.0, we are releasing
2747
- Jekyll v1.4.0. This release will be the last non-patch release to support Ruby
2748
- 1.8.7 and our next release will be Jekyll 2.0.0.</p>
2749
-
2750
- <p>Here are a few things we think you’ll want to know about this release:</p>
2751
-
2752
- <ul>
2753
- <li>
2754
- <p>TOML is now a supported markup language for config files.</p>
2755
- </li>
2756
- <li>
2757
- <p>Maruku has been updated to 0.7.0 which provides some new features and
2758
- a ton of bugfixes over the previous 0.6.x releases.</p>
2759
- </li>
2760
- <li>
2761
- <p>Non-<code class="highlighter-rouge">gem</code> Plugins are now sorted alphabetically by filename before they’re
2762
- processed, which can provide a rudimentary way to establish a load order for
2763
- plugins.</p>
2764
- </li>
2765
- </ul>
2766
-
2767
- <p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
2768
-
2769
- <p>As always, Jekyll wouldn’t be possible without the contributions from
2770
- others in the Jekyll community. We’d like to thank the following people
2771
- for contributing to this release: Anatol Broder, David Sawyer, Greg
2772
- Karékinian, Jordon Bedwell, Matthew Iversen, Persa Zula, and Yi Zeng.</p>
2773
-
2774
- </div>
2775
- </article>
2776
-
2777
-
2778
- <article>
2779
- <h2>
2780
- <a href="/news/2013/11/26/jekyll-1-3-1-released/">
2781
- Jekyll 1.3.1 Released
2782
- </a>
2783
- </h2>
2784
- <span class="post-category">
2785
- <span class="label">
2786
- release
2787
- </span>
2788
- </span>
2789
- <div class="post-meta">
2790
- <span class="post-date">
2791
- 26 Nov 2013
2792
- </span>
2793
- <a href="https://github.com/mattr-" class="post-author">
2794
-
2795
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2796
- mattr-
2797
- </a>
2798
- </div>
2799
- <div class="post-content">
2800
- <p>Just in time for the US holiday Thanksgiving, we’re releasing version
2801
- 1.3.1 of Jekyll to address some of the issues seen since the
2802
- release of 1.3.0.</p>
2803
-
2804
- <p>In addition to a couple of other smaller bug fixes, the biggest thing
2805
- we’ve fixed is an issue with the <code class="highlighter-rouge">--watch</code> option with Ruby 1.8.7. For a
2806
- full run-down, visit our <a href="/docs/history/">change log</a>!</p>
2807
-
2808
- <p>Thanks to all the people who have contributed to this release! They are
2809
- (in alphabetical order): Abhi Yerra, Anatol Broder, Andreas Möller, Greg
2810
- Karékinian, Sam Rayner, Santeri Paavolainen, Shigeya Suzuki, Yihang Ho,
2811
- albertogg, andrewhavens, maul.esel, and thomasdao</p>
2812
-
2813
- </div>
2814
- </article>
2815
-
2816
-
2817
- <article>
2818
- <h2>
2819
- <a href="/news/2013/11/04/jekyll-1-3-0-released/">
2820
- Jekyll 1.3.0 Released
2821
- </a>
2822
- </h2>
2823
- <span class="post-category">
2824
- <span class="label">
2825
- release
2826
- </span>
2827
- </span>
2828
- <div class="post-meta">
2829
- <span class="post-date">
2830
- 04 Nov 2013
2831
- </span>
2832
- <a href="https://github.com/mattr-" class="post-author">
2833
-
2834
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2835
- mattr-
2836
- </a>
2837
- </div>
2838
- <div class="post-content">
2839
- <p>It’s been about six weeks since v1.2.0 and the Jekyll team is happy to
2840
- announce the arrival of v1.3.0. This is a <strong>huge</strong> release full of all
2841
- sorts of new features, bug fixes, and other things that you’re sure to
2842
- love.</p>
2843
-
2844
- <p>Here are a few things we think you’ll want to know about this release:</p>
2845
-
2846
- <ul>
2847
- <li>
2848
- <p>You can add <a href="/docs/datafiles/">arbitrary data</a> to the site by adding YAML files under a
2849
- site’s <code class="highlighter-rouge">_data</code> directory. This will allow you to avoid
2850
- repetition in your templates and to set site specific options without
2851
- changing <code class="highlighter-rouge">_config.yml</code>.</p>
2852
- </li>
2853
- <li>
2854
- <p>You can now run <code class="highlighter-rouge">jekyll serve --detach</code> to boot up a WEBrick server in the
2855
- background. <strong>Note:</strong> you’ll need to run <code class="highlighter-rouge">kill [server_pid]</code> to shut
2856
- the server down. When ran, you’ll get a process id that you can use in
2857
- place of <code class="highlighter-rouge">[server_pid]</code></p>
2858
- </li>
2859
- <li>
2860
- <p>You can now <strong>disable automatically-generated excerpts</strong> if you set
2861
- <code class="highlighter-rouge">excerpt_separator</code> to <code class="highlighter-rouge">""</code>.</p>
2862
- </li>
2863
- <li>
2864
- <p>If you’re moving pages and posts, you can now check for <strong>URL
2865
- conflicts</strong> by running <code class="highlighter-rouge">jekyll doctor</code>.</p>
2866
- </li>
2867
- <li>
2868
- <p>If you’re a fan of the drafts feature, you’ll be happy to know we’ve
2869
- added <code class="highlighter-rouge">-D</code>, a shortened version of <code class="highlighter-rouge">--drafts</code>.</p>
2870
- </li>
2871
- <li>
2872
- <p>Permalinks with special characters should now generate without errors.</p>
2873
- </li>
2874
- <li>
2875
- <p>Expose the current Jekyll version as the <code class="highlighter-rouge">jekyll.version</code> Liquid
2876
- variable.</p>
2877
- </li>
2878
- </ul>
2879
-
2880
- <p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
2881
-
2882
-
2883
- </div>
2884
- </article>
2885
-
2886
-
2887
- <article>
2888
- <h2>
2889
- <a href="/news/2013/10/28/jekyll-1-3-0-rc1-released/">
2890
- Jekyll 1.3.0.rc1 Released
2891
- </a>
2892
- </h2>
2893
- <span class="post-category">
2894
- <span class="label">
2895
- release
2896
- </span>
2897
- </span>
2898
- <div class="post-meta">
2899
- <span class="post-date">
2900
- 28 Oct 2013
2901
- </span>
2902
- <a href="https://github.com/mattr-" class="post-author">
2903
-
2904
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2905
- mattr-
2906
- </a>
2907
- </div>
2908
- <div class="post-content">
2909
- <p>Jekyll 1.3.0 is going to be a big release! In order to make sure we
2910
- didn’t screw anything up too badly, we’re making a release candidate
2911
- available for any early adopters who want to give the latest and
2912
- greatest code a spin without having to clone a repository from git.</p>
2913
-
2914
- <p>Please take this prerelease for a spin and <a href="https://github.com/jekyll/jekyll/issues/new">let us
2915
- know</a> if you run into any
2916
- issues!</p>
2917
-
2918
- </div>
2919
- </article>
2920
-
2921
-
2922
- <article>
2923
- <h2>
2924
- <a href="/news/2013/09/14/jekyll-1-2-1-released/">
2925
- Jekyll 1.2.1 Released
2926
- </a>
2927
- </h2>
2928
- <span class="post-category">
2929
- <span class="label">
2930
- release
2931
- </span>
2932
- </span>
2933
- <div class="post-meta">
2934
- <span class="post-date">
2935
- 14 Sep 2013
2936
- </span>
2937
- <a href="https://github.com/parkr" class="post-author">
2938
-
2939
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2940
- parkr
2941
- </a>
2942
- </div>
2943
- <div class="post-content">
2944
- <p>Quick turnover, anyone? A <a href="https://github.com/jekyll/jekyll/pull/1525">recent incompatibility with Liquid
2945
- v2.5.2</a> produced a nasty bug in
2946
- which <code class="highlighter-rouge">include</code> tags were not rendered properly within <code class="highlighter-rouge">if</code> blocks.</p>
2947
-
2948
- <p>This release also includes a better handling of detached servers (prints pid and
2949
- the command for killing the process). <strong>Note</strong>: the <code class="highlighter-rouge">--detach</code> flag and
2950
- <code class="highlighter-rouge">--watch</code> flags are presently incompatible in 1.2.x. Fix for that coming soon!</p>
2951
-
2952
- <p>For a full list of the fixes in this release, check out <a href="/docs/history/">the change
2953
- log</a>!</p>
2954
-
2955
- </div>
2956
- </article>
2957
-
2958
-
2959
- <article>
2960
- <h2>
2961
- <a href="/news/2013/09/06/jekyll-1-2-0-released/">
2962
- Jekyll 1.2.0 Released
2963
- </a>
2964
- </h2>
2965
- <span class="post-category">
2966
- <span class="label">
2967
- release
2968
- </span>
2969
- </span>
2970
- <div class="post-meta">
2971
- <span class="post-date">
2972
- 06 Sep 2013
2973
- </span>
2974
- <a href="https://github.com/parkr" class="post-author">
2975
-
2976
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
2977
- parkr
2978
- </a>
2979
- </div>
2980
- <div class="post-content">
2981
- <p>After nearly a month and a half of hard work, the Jekyll team is happy to
2982
- announce the release of v1.2.0. It’s chock full of bug fixes and some
2983
- enhancements that we think you’ll love.</p>
2984
-
2985
- <p>Here are a few things we think you’ll want to know about this release:</p>
2986
-
2987
- <ul>
2988
- <li>Run <code class="highlighter-rouge">jekyll serve --detach</code> to boot up a WEBrick server in the background. <strong>Note:</strong> you’ll need to run <code class="highlighter-rouge">kill [server_pid]</code> to shut the server down.</li>
2989
- <li>You can now <strong>disable automatically-generated excerpts</strong> if you set <code class="highlighter-rouge">excerpt_separator</code> to <code class="highlighter-rouge">""</code>.</li>
2990
- <li>If you’re moving around pages and post, you can now check for <strong>URL conflicts</strong> by running <code class="highlighter-rouge">jekyll doctor</code>.</li>
2991
- <li>If you’re a fan of the drafts feature, you’ll be happy to know we’ve added <code class="highlighter-rouge">-D</code>, a shortened version of <code class="highlighter-rouge">--drafts</code>.</li>
2992
- <li>Permalinks with special characters should now generate without errors.</li>
2993
- <li>Expose the current Jekyll version as the <code class="highlighter-rouge">jekyll.version</code> Liquid variable.</li>
2994
- </ul>
2995
-
2996
- <p>For a full run-down, visit our <a href="/docs/history/">change log</a>!</p>
2997
-
2998
- </div>
2999
- </article>
3000
-
3001
-
3002
- <article>
3003
- <h2>
3004
- <a href="/news/2013/07/25/jekyll-1-1-2-released/">
3005
- Jekyll 1.1.2 Released
3006
- </a>
3007
- </h2>
3008
- <span class="post-category">
3009
- <span class="label">
3010
- release
3011
- </span>
3012
- </span>
3013
- <div class="post-meta">
3014
- <span class="post-date">
3015
- 25 Jul 2013
3016
- </span>
3017
- <a href="https://github.com/parkr" class="post-author">
3018
-
3019
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3020
- parkr
3021
- </a>
3022
- </div>
3023
- <div class="post-content">
3024
- <p>Version 1.1.2 fixes a minor, but nonetheless important security vulnerability affecting several third-party Jekyll plugins. If your Jekyll site does not use plugins, you may, but are not required to upgrade at this time.</p>
3025
-
3026
- <p>Community and custom plugins extending the <code class="highlighter-rouge">Liquid::Drop</code> class may inadvertently disclose some system information such as directory structure or software configuration to users with access to the Liquid templating system.</p>
3027
-
3028
- <p>We recommend you upgrade to Jekyll v1.1.2 immediately if you use <code class="highlighter-rouge">Liquid::Drop</code> plugins on your Jekyll site.</p>
3029
-
3030
- <p>Many thanks for <a href="https://github.com/benbalter">Ben Balter</a> for alerting us to the problem
3031
- and <a href="https://github.com/jekyll/jekyll/issues/1349">submitting a patch</a> so quickly.</p>
3032
-
3033
-
3034
- </div>
3035
- </article>
3036
-
3037
-
3038
- <article>
3039
- <h2>
3040
- <a href="/news/2013/07/25/jekyll-1-0-4-released/">
3041
- Jekyll 1.0.4 Released
3042
- </a>
3043
- </h2>
3044
- <span class="post-category">
3045
- <span class="label">
3046
- release
3047
- </span>
3048
- </span>
3049
- <div class="post-meta">
3050
- <span class="post-date">
3051
- 25 Jul 2013
3052
- </span>
3053
- <a href="https://github.com/mattr-" class="post-author">
3054
-
3055
- <img class="avatar avatar-small" src="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24" alt="mattr-" srcset="https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=24 1x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=48 2x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=72 3x, https://avatars0.githubusercontent.com/mattr-?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3056
- mattr-
3057
- </a>
3058
- </div>
3059
- <div class="post-content">
3060
- <p>Version 1.0.4 fixes a minor, but nonetheless important security vulnerability affecting several third-party Jekyll plugins. If your Jekyll site does not use plugins, you may, but are not required to upgrade at this time.</p>
3061
-
3062
- <p>Community and custom plugins extending the <code class="highlighter-rouge">Liquid::Drop</code> class may inadvertently disclose some system information such as directory structure or software configuration to users with access to the Liquid templating system.</p>
3063
-
3064
- <p>We recommend you upgrade to Jekyll v1.0.4 immediately if you use <code class="highlighter-rouge">Liquid::Drop</code> plugins on your Jekyll site.</p>
3065
-
3066
- <p>Many thanks for <a href="https://github.com/benbalter">Ben Balter</a> for alerting us to the problem
3067
- and <a href="https://github.com/jekyll/jekyll/issues/1349">submitting a patch</a> so quickly.</p>
3068
-
3069
-
3070
- </div>
3071
- </article>
3072
-
3073
-
3074
- <article>
3075
- <h2>
3076
- <a href="/news/2013/07/24/jekyll-1-1-1-released/">
3077
- Jekyll 1.1.1 Released
3078
- </a>
3079
- </h2>
3080
- <span class="post-category">
3081
- <span class="label">
3082
- release
3083
- </span>
3084
- </span>
3085
- <div class="post-meta">
3086
- <span class="post-date">
3087
- 24 Jul 2013
3088
- </span>
3089
- <a href="https://github.com/parkr" class="post-author">
3090
-
3091
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3092
- parkr
3093
- </a>
3094
- </div>
3095
- <div class="post-content">
3096
- <p>Coming just 10 days after the release of v1.1.0, v1.1.1 is out with a patch for the nasty
3097
- excerpt inception bug (<a href="https://github.com/jekyll/jekyll/issues/1339">#1339</a>) and non-zero exit codes for invalid commands
3098
- (<a href="https://github.com/jekyll/jekyll/issues/1338">#1338</a>).</p>
3099
-
3100
- <p>To all those affected by the <a href="https://github.com/jekyll/jekyll/issues/1321">strange excerpt bug in v1.1.0</a>, I’m sorry. I think we
3101
- have it all patched up and it should be deployed to <a href="https://pages.github.com/">GitHub Pages</a> in the next
3102
- couple weeks. Thank you for your patience!</p>
3103
-
3104
- <p>If you’re checking out v1.1.x for the first time, definitely check out <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.0">what shipped with
3105
- v1.1.0!</a></p>
3106
-
3107
- <p>See the <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.1">GitHub Release</a> page for more a more detailed changelog for this release.</p>
3108
-
3109
-
3110
- </div>
3111
- </article>
3112
-
3113
-
3114
- <article>
3115
- <h2>
3116
- <a href="/news/2013/07/14/jekyll-1-1-0-released/">
3117
- Jekyll 1.1.0 Released
3118
- </a>
3119
- </h2>
3120
- <span class="post-category">
3121
- <span class="label">
3122
- release
3123
- </span>
3124
- </span>
3125
- <div class="post-meta">
3126
- <span class="post-date">
3127
- 14 Jul 2013
3128
- </span>
3129
- <a href="https://github.com/parkr" class="post-author">
3130
-
3131
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3132
- parkr
3133
- </a>
3134
- </div>
3135
- <div class="post-content">
3136
- <p>After a month of hard work, the Jekyll core team is excited to announce the release of
3137
- Jekyll v1.1.0! This latest release of Jekyll brings some really exciting new additions:</p>
3138
-
3139
- <ul>
3140
- <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>
3141
- <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>
3142
- <li>Add support for Liquid tags to post excerpts (<a href="https://github.com/jekyll/jekyll/issues/1302">#1302</a>)</li>
3143
- <li>Fix pagination for subdirectories (<a href="https://github.com/jekyll/jekyll/issues/1198">#1198</a>)</li>
3144
- <li>Provide better error reporting when generating sites (<a href="https://github.com/jekyll/jekyll/issues/1253">#1253</a>)</li>
3145
- <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>
3146
- </ul>
3147
-
3148
- <p>See the <a href="https://github.com/jekyll/jekyll/releases/tag/v1.1.0">GitHub Release</a> page for more a more detailed changelog for this release.</p>
3149
-
3150
-
3151
- </div>
3152
- </article>
3153
-
3154
-
3155
- <article>
3156
- <h2>
3157
- <a href="/news/2013/06/07/jekyll-1-0-3-released/">
3158
- Jekyll 1.0.3 Released
3159
- </a>
3160
- </h2>
3161
- <span class="post-category">
3162
- <span class="label">
3163
- release
3164
- </span>
3165
- </span>
3166
- <div class="post-meta">
3167
- <span class="post-date">
3168
- 07 Jun 2013
3169
- </span>
3170
- <a href="https://github.com/parkr" class="post-author">
3171
-
3172
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3173
- parkr
3174
- </a>
3175
- </div>
3176
- <div class="post-content">
3177
- <p>v1.0.3 contains some key enhancements and bug fixes:</p>
3178
-
3179
- <ul>
3180
- <li>Fail with non-zero exit code when MaRuKu errors (<a href="https://github.com/jekyll/jekyll/issues/1190">#1190</a>) or Liquid errors (<a href="https://github.com/jekyll/jekyll/issues/1121">#1121</a>)</li>
3181
- <li>Add support for private gists to <code class="highlighter-rouge">gist</code> tag (<a href="https://github.com/jekyll/jekyll/issues/1189">#1189</a>)</li>
3182
- <li>Add <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>
3183
- <li>Fix compatibility with <code class="highlighter-rouge">exclude</code> and <code class="highlighter-rouge">include</code> with pre-1.0 Jekyll (<a href="https://github.com/jekyll/jekyll/issues/1114">#1114</a>)</li>
3184
- <li>Fix pagination issue regarding <code class="highlighter-rouge">File.basename</code> and <code class="highlighter-rouge">page:num</code> (<a href="https://github.com/jekyll/jekyll/issues/1063">#1063</a>)</li>
3185
- </ul>
3186
-
3187
- <p>See the <a href="/docs/history/#v1-0-3">History</a> page for more information on this release.</p>
3188
-
3189
-
3190
- </div>
3191
- </article>
3192
-
3193
-
3194
- <article>
3195
- <h2>
3196
- <a href="/news/2013/05/12/jekyll-1-0-2-released/">
3197
- Jekyll 1.0.2 Released
3198
- </a>
3199
- </h2>
3200
- <span class="post-category">
3201
- <span class="label">
3202
- release
3203
- </span>
3204
- </span>
3205
- <div class="post-meta">
3206
- <span class="post-date">
3207
- 12 May 2013
3208
- </span>
3209
- <a href="https://github.com/parkr" class="post-author">
3210
-
3211
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3212
- parkr
3213
- </a>
3214
- </div>
3215
- <div class="post-content">
3216
- <p>v1.0.2 has some key bugfixes that optionally restore some behaviour from pre-1.0
3217
- releases, and fix some other annoying bugs:</p>
3218
-
3219
- <ul>
3220
- <li>Backwards-compatibilize relative permalinks (<a href="https://github.com/jekyll/jekyll/issues/1081">#1081</a>)</li>
3221
- <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>
3222
- <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>
3223
- <li>Update pygments.rb and kramdon versions to 0.5.0 and 1.0.2, respectively (<a href="https://github.com/jekyll/jekyll/issues/1061">#1061</a>, <a href="https://github.com/jekyll/jekyll/issues/1067">#1067</a>)</li>
3224
- <li>Fix issue when post categories are numbers (<a href="https://github.com/jekyll/jekyll/issues/1078">#1078</a>)</li>
3225
- <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>
3226
- <li>Catching that Redcarpet gem isn’t installed (<a href="https://github.com/jekyll/jekyll/issues/1059">#1059</a>)</li>
3227
- </ul>
3228
-
3229
- <p>See the <a href="/docs/history/#v1-0-2">History</a> page for more information on this release.</p>
3230
-
3231
-
3232
- </div>
3233
- </article>
3234
-
3235
-
3236
- <article>
3237
- <h2>
3238
- <a href="/news/2013/05/08/jekyll-1-0-1-released/">
3239
- Jekyll 1.0.1 Released
3240
- </a>
3241
- </h2>
3242
- <span class="post-category">
3243
- <span class="label">
3244
- release
3245
- </span>
3246
- </span>
3247
- <div class="post-meta">
3248
- <span class="post-date">
3249
- 08 May 2013
3250
- </span>
3251
- <a href="https://github.com/parkr" class="post-author">
3252
-
3253
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3254
- parkr
3255
- </a>
3256
- </div>
3257
- <div class="post-content">
3258
- <p>Hot on the trails of v1.0, v1.0.1 is out! Here are the highlights:</p>
3259
-
3260
- <ul>
3261
- <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>
3262
- <li>Commander error message now preferred over process abort with incorrect args (<a href="https://github.com/jekyll/jekyll/issues/1040">#1040</a>)</li>
3263
- <li>Do not force use of toc_token when using generate_toc in RDiscount (<a href="https://github.com/jekyll/jekyll/issues/1048">#1048</a>)</li>
3264
- <li>Make Redcarpet respect the pygments configuration option (<a href="https://github.com/jekyll/jekyll/issues/1053">#1053</a>)</li>
3265
- <li>Fix the index build with LSI (<a href="https://github.com/jekyll/jekyll/issues/1045">#1045</a>)</li>
3266
- <li>Don’t print deprecation warning when no arguments are specified. (<a href="https://github.com/jekyll/jekyll/issues/1041">#1041</a>)</li>
3267
- <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>
3268
- </ul>
3269
-
3270
- <p>See the <a href="/docs/history/#v1-0-1">History</a> page for more information on this release.</p>
3271
-
3272
-
3273
- </div>
3274
- </article>
3275
-
3276
-
3277
- <article>
3278
- <h2>
3279
- <a href="/news/2013/05/05/jekyll-1-0-0-released/">
3280
- Jekyll 1.0.0 Released
3281
- </a>
3282
- </h2>
3283
- <span class="post-category">
3284
- <span class="label">
3285
- release
3286
- </span>
3287
- </span>
3288
- <div class="post-meta">
3289
- <span class="post-date">
3290
- 05 May 2013
3291
- </span>
3292
- <a href="https://github.com/parkr" class="post-author">
3293
-
3294
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&amp;s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&amp;s=96 4x" width="24" height="24" data-proofer-ignore="true">
3295
- parkr
3296
- </a>
3297
- </div>
3298
- <div class="post-content">
3299
- <p>Hey! After many months of hard work by Jekyll’s contributors, we’re excited
3300
- to announce the first major release of the project in a long while. v1.0.0 is
3301
- finally here! While the list of improvements and bug fixes is <a href="/docs/history/#v1-0-0">quite lengthy</a>,
3302
- here are the highlights (thanks to <a href="https://twitter.com/BenBalter">@benbalter</a> for the
3303
- examples and for compiling this list):</p>
3304
-
3305
- <ul>
3306
- <li>Support for the Gist tag for easily embedding Gists (<a href="https://gist.github.com/benbalter/5555251">example</a>)</li>
3307
- <li>Automatically generated post excerpts (<a href="https://gist.github.com/benbalter/5555369">example</a>)</li>
3308
- <li>Save and preview drafts before publishing (<a href="https://gist.github.com/benbalter/5555992">example</a>)</li>
3309
- </ul>
3310
-
3311
- <p>Take a look at the <a href="/docs/upgrading/">Upgrading</a> page in the docs for more detailed information.</p>
3312
-
3313
-
3314
- </div>
3315
- </article>
3316
-
3317
-
3318
-
3319
- </div>
3320
-
3321
- <div class="unit one-fifth hide-on-mobiles">
3322
- <aside>
3323
- <ul>
3324
- <li class="current">
3325
- <a href="/news/">All News</a>
3326
- </li>
3327
- <li class="">
3328
- <a href="/news/releases/">Jekyll Releases</a>
3329
- </li>
3330
- </ul>
3331
- <h4>Recent Releases</h4>
3332
- <ul>
3333
-
3334
- <li class="">
3335
- <a href="/news/2017/09/21/jekyll-3-6-0-released/">Version 3.6.0</a>
3336
- </li>
3337
-
3338
- <li class="">
3339
- <a href="/news/2017/08/12/jekyll-3-5-2-released/">Version 3.5.2</a>
3340
- </li>
3341
-
3342
- <li class="">
3343
- <a href="/news/2017/07/17/jekyll-3-5-1-released/">Version 3.5.1</a>
3344
- </li>
3345
-
3346
- <li class="">
3347
- <a href="/news/2017/06/15/jekyll-3-5-0-released/">Version 3.5.0</a>
3348
- </li>
3349
-
3350
- <li class="">
3351
- <a href="/news/2017/03/21/jekyll-3-4-3-released/">Version 3.4.3</a>
3352
- </li>
3353
-
3354
- <li>
3355
- <a href="/docs/history/">History »</a>
3356
- </li>
3357
- </ul>
3358
- <h4>Other News</h4>
3359
- <ul>
3360
-
3361
-
3362
-
3363
-
3364
-
3365
-
3366
-
3367
-
3368
-
3369
-
3370
-
3371
-
3372
-
3373
-
3374
-
3375
-
3376
-
3377
-
3378
-
3379
-
3380
-
3381
-
3382
- <li class="">
3383
- <a href="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</a>
3384
- </li>
3385
-
3386
-
3387
-
3388
-
3389
-
3390
-
3391
-
3392
- <li class="">
3393
- <a href="/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/">Jekyll's Google Summer of Code Project: The CMS You Always Wanted</a>
3394
- </li>
3395
-
3396
-
3397
-
3398
-
3399
-
3400
-
3401
-
3402
-
3403
-
3404
-
3405
-
3406
-
3407
-
3408
-
3409
-
3410
- <li class="">
3411
- <a href="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</a>
3412
- </li>
3413
-
3414
-
3415
-
3416
-
3417
-
3418
-
3419
-
3420
-
3421
-
3422
-
3423
-
3424
-
3425
-
3426
-
3427
-
3428
-
3429
-
3430
- <li class="">
3431
- <a href="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</a>
3432
- </li>
3433
-
3434
-
3435
-
3436
-
3437
-
3438
- <li class="">
3439
- <a href="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet &amp; Greet at GitHub HQ</a>
3440
- </li>
3441
-
3442
-
3443
-
3444
-
3445
-
3446
- <li class="">
3447
- <a href="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</a>
3448
- </li>
3449
-
3450
-
3451
-
3452
-
3453
-
3454
-
3455
-
3456
-
3457
-
3458
-
3459
-
3460
-
3461
-
3462
-
3463
-
3464
-
3465
-
3466
-
3467
-
3468
- <li class="">
3469
- <a href="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</a>
3470
- </li>
3471
-
3472
-
3473
-
3474
-
3475
-
3476
-
3477
-
3478
-
3479
-
3480
-
3481
-
3482
-
3483
-
3484
-
3485
-
3486
-
3487
-
3488
-
3489
-
3490
-
3491
-
3492
-
3493
-
3494
-
3495
-
3496
-
3497
-
3498
-
3499
-
3500
-
3501
-
3502
-
3503
-
3504
-
3505
-
3506
-
3507
-
3508
-
3509
-
3510
-
3511
-
3512
-
3513
-
3514
-
3515
- </ul>
3516
- </aside>
3517
- </div>
3518
-
3519
-
3520
- <div class="clear"></div>
3521
-
3522
- </div>
3523
- </section>
3524
-
3525
-
3526
- <footer>
3527
- <div class="grid">
3528
- <div class="unit one-third center-on-mobiles">
3529
- <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>
3530
- </div>
3531
- <div class="unit two-thirds align-right center-on-mobiles">
3532
- <p>
3533
- Proudly hosted by
3534
- <a href="https://github.com">
3535
- <img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
3536
- </a>
3537
- </p>
3538
- </div>
3539
- </div>
3540
- </footer>
3541
-
3542
- <script>
3543
- var anchorForId = function (id) {
3544
- var anchor = document.createElement("a");
3545
- anchor.className = "header-link";
3546
- anchor.href = "#" + id;
3547
- anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
3548
- anchor.title = "Permalink";
3549
- return anchor;
3550
- };
3551
-
3552
- var linkifyAnchors = function (level, containingElement) {
3553
- var headers = containingElement.getElementsByTagName("h" + level);
3554
- for (var h = 0; h < headers.length; h++) {
3555
- var header = headers[h];
3556
-
3557
- if (typeof header.id !== "undefined" && header.id !== "") {
3558
- header.appendChild(anchorForId(header.id));
3559
- }
3560
- }
3561
- };
3562
-
3563
- document.onreadystatechange = function () {
3564
- if (this.readyState === "complete") {
3565
- var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
3566
- if (!contentBlock) {
3567
- return;
3568
- }
3569
- for (var level = 1; level <= 6; level++) {
3570
- linkifyAnchors(level, contentBlock);
3571
- }
3572
- }
3573
- };
3574
- </script>
3575
-
3576
-
3577
- <!-- Gauges (http://get.gaug.es/) -->
3578
- <script>
3579
- var _gauges = _gauges || [];
3580
- (function() {
3581
- var t = document.createElement('script');
3582
- t.type = 'text/javascript';
3583
- t.async = true;
3584
- t.id = 'gauges-tracker';
3585
- t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
3586
- t.src = '//secure.gaug.es/track.js';
3587
- var s = document.getElementsByTagName('script')[0];
3588
- s.parentNode.insertBefore(t, s);
3589
- })();
3590
- </script>
3591
-
3592
-
3593
-
3594
- <!-- Google Analytics (https://www.google.com/analytics) -->
3595
- <script>
3596
- !function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
3597
- (j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
3598
- L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
3599
- L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
3600
-
3601
- ga('create', 'UA-50755011-1', 'jekyllrb.com');
3602
- ga('send', 'pageview');
3603
-
3604
- </script>
3605
-
3606
-
3607
-
3608
- </body>
3609
- </html>