jekyll-docs 3.6.1.0 → 3.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/jekyll.rb +195 -0
- data/lib/jekyll/cleaner.rb +110 -0
- data/lib/jekyll/collection.rb +230 -0
- data/lib/jekyll/command.rb +78 -0
- data/lib/jekyll/commands/build.rb +102 -0
- data/lib/jekyll/commands/clean.rb +43 -0
- data/lib/jekyll/commands/doctor.rb +153 -0
- data/lib/jekyll/commands/help.rb +34 -0
- data/lib/jekyll/commands/new.rb +156 -0
- data/lib/jekyll/commands/new_theme.rb +40 -0
- data/lib/jekyll/commands/serve.rb +245 -0
- data/lib/jekyll/commands/serve/servlet.rb +62 -0
- data/lib/jekyll/configuration.rb +410 -0
- data/lib/jekyll/converter.rb +54 -0
- data/lib/jekyll/converters/identity.rb +23 -0
- data/lib/jekyll/converters/markdown.rb +104 -0
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +123 -0
- data/lib/jekyll/converters/markdown/rdiscount_parser.rb +35 -0
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +108 -0
- data/lib/jekyll/converters/smartypants.rb +36 -0
- data/lib/jekyll/convertible.rb +251 -0
- data/lib/jekyll/deprecator.rb +52 -0
- data/lib/jekyll/document.rb +507 -0
- data/lib/jekyll/drops/collection_drop.rb +22 -0
- data/lib/jekyll/drops/document_drop.rb +69 -0
- data/lib/jekyll/drops/drop.rb +214 -0
- data/lib/jekyll/drops/excerpt_drop.rb +15 -0
- data/lib/jekyll/drops/jekyll_drop.rb +33 -0
- data/lib/jekyll/drops/site_drop.rb +47 -0
- data/lib/jekyll/drops/static_file_drop.rb +13 -0
- data/lib/jekyll/drops/unified_payload_drop.rb +25 -0
- data/lib/jekyll/drops/url_drop.rb +88 -0
- data/lib/jekyll/entry_filter.rb +123 -0
- data/lib/jekyll/errors.rb +20 -0
- data/lib/jekyll/excerpt.rb +126 -0
- data/lib/jekyll/external.rb +74 -0
- data/lib/jekyll/filters.rb +430 -0
- data/lib/jekyll/filters/grouping_filters.rb +65 -0
- data/lib/jekyll/filters/url_filters.rb +60 -0
- data/lib/jekyll/frontmatter_defaults.rb +197 -0
- data/lib/jekyll/generator.rb +5 -0
- data/lib/jekyll/hooks.rb +104 -0
- data/lib/jekyll/layout.rb +62 -0
- data/lib/jekyll/liquid_extensions.rb +24 -0
- data/lib/jekyll/liquid_renderer.rb +49 -0
- data/lib/jekyll/liquid_renderer/file.rb +56 -0
- data/lib/jekyll/liquid_renderer/table.rb +96 -0
- data/lib/jekyll/log_adapter.rb +147 -0
- data/lib/jekyll/mime.types +825 -0
- data/lib/jekyll/page.rb +187 -0
- data/lib/jekyll/plugin.rb +98 -0
- data/lib/jekyll/plugin_manager.rb +113 -0
- data/lib/jekyll/publisher.rb +23 -0
- data/lib/jekyll/reader.rb +134 -0
- data/lib/jekyll/readers/collection_reader.rb +22 -0
- data/lib/jekyll/readers/data_reader.rb +77 -0
- data/lib/jekyll/readers/layout_reader.rb +71 -0
- data/lib/jekyll/readers/page_reader.rb +25 -0
- data/lib/jekyll/readers/post_reader.rb +72 -0
- data/lib/jekyll/readers/static_file_reader.rb +25 -0
- data/lib/jekyll/readers/theme_assets_reader.rb +49 -0
- data/lib/jekyll/regenerator.rb +201 -0
- data/lib/jekyll/related_posts.rb +52 -0
- data/lib/jekyll/renderer.rb +269 -0
- data/lib/jekyll/site.rb +472 -0
- data/lib/jekyll/static_file.rb +162 -0
- data/lib/jekyll/stevenson.rb +61 -0
- data/lib/jekyll/tags/highlight.rb +141 -0
- data/lib/jekyll/tags/include.rb +215 -0
- data/lib/jekyll/tags/link.rb +37 -0
- data/lib/jekyll/tags/post_url.rb +103 -0
- data/lib/jekyll/theme.rb +68 -0
- data/lib/jekyll/theme_builder.rb +119 -0
- data/lib/jekyll/url.rb +161 -0
- data/lib/jekyll/utils.rb +340 -0
- data/lib/jekyll/utils/ansi.rb +59 -0
- data/lib/jekyll/utils/exec.rb +27 -0
- data/lib/jekyll/utils/platforms.rb +82 -0
- data/lib/jekyll/utils/rouge.rb +21 -0
- data/lib/jekyll/utils/win_tz.rb +75 -0
- data/lib/jekyll/version.rb +5 -0
- data/lib/site_template/404.html +24 -0
- data/lib/site_template/_config.yml +43 -0
- data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +25 -0
- data/lib/site_template/about.md +18 -0
- data/lib/site_template/index.md +6 -0
- data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -0
- data/lib/theme_template/Gemfile +4 -0
- data/lib/theme_template/LICENSE.txt.erb +21 -0
- data/lib/theme_template/README.md.erb +52 -0
- data/lib/theme_template/_layouts/default.html +1 -0
- data/lib/theme_template/_layouts/page.html +5 -0
- data/lib/theme_template/_layouts/post.html +5 -0
- data/lib/theme_template/example/_config.yml.erb +1 -0
- data/lib/theme_template/example/_post.md +12 -0
- data/lib/theme_template/example/index.html +14 -0
- data/lib/theme_template/example/style.scss +7 -0
- data/lib/theme_template/gitignore.erb +5 -0
- data/lib/theme_template/theme.gemspec.erb +19 -0
- metadata +103 -156
- data/lib/jekyll-docs.rb +0 -31
- data/site/404.html +0 -153
- data/site/CNAME +0 -1
- data/site/community/index.html +0 -299
- data/site/conduct/index.html +0 -10
- data/site/css/screen.css +0 -1
- data/site/docs/assets/index.html +0 -724
- data/site/docs/code_of_conduct/index.html +0 -730
- data/site/docs/collections/index.html +0 -1097
- data/site/docs/conduct/index.html +0 -744
- data/site/docs/configuration/index.html +0 -1403
- data/site/docs/continuous-integration/buddyworks/index.html +0 -726
- data/site/docs/continuous-integration/circleci/index.html +0 -757
- data/site/docs/continuous-integration/index.html +0 -681
- data/site/docs/continuous-integration/travis-ci/index.html +0 -891
- data/site/docs/contributing/index.html +0 -863
- data/site/docs/datafiles/index.html +0 -780
- data/site/docs/deployment-methods/index.html +0 -875
- data/site/docs/drafts/index.html +0 -636
- data/site/docs/extras/index.html +0 -689
- data/site/docs/frontmatter/index.html +0 -821
- data/site/docs/github-pages/index.html +0 -819
- data/site/docs/history/index.html +0 -3955
- data/site/docs/home/index.html +0 -644
- data/site/docs/includes/index.html +0 -800
- data/site/docs/index.html +0 -10
- data/site/docs/installation/index.html +0 -732
- data/site/docs/maintaining/affinity-team-captain/index.html +0 -706
- data/site/docs/maintaining/avoiding-burnout/index.html +0 -709
- data/site/docs/maintaining/becoming-a-maintainer/index.html +0 -717
- data/site/docs/maintaining/index.html +0 -713
- data/site/docs/maintaining/merging-a-pull-request/index.html +0 -747
- data/site/docs/maintaining/reviewing-a-pull-request/index.html +0 -725
- data/site/docs/maintaining/special-labels/index.html +0 -705
- data/site/docs/maintaining/triaging-an-issue/index.html +0 -735
- data/site/docs/migrations/index.html +0 -647
- data/site/docs/pages/index.html +0 -695
- data/site/docs/pagination/index.html +0 -870
- data/site/docs/permalinks/index.html +0 -1035
- data/site/docs/plugins/index.html +0 -1800
- data/site/docs/posts/index.html +0 -858
- data/site/docs/quickstart/index.html +0 -650
- data/site/docs/resources/index.html +0 -769
- data/site/docs/sites/index.html +0 -702
- data/site/docs/static-files/index.html +0 -720
- data/site/docs/structure/index.html +0 -822
- data/site/docs/templates/index.html +0 -1208
- data/site/docs/themes/index.html +0 -935
- data/site/docs/troubleshooting/index.html +0 -916
- data/site/docs/upgrading/0-to-2/index.html +0 -826
- data/site/docs/upgrading/2-to-3/index.html +0 -824
- data/site/docs/upgrading/index.html +0 -693
- data/site/docs/usage/index.html +0 -705
- data/site/docs/variables/index.html +0 -1048
- data/site/docs/windows/index.html +0 -799
- data/site/favicon.ico +0 -0
- data/site/feed.xml +0 -372
- data/site/fonts/FontAwesome.eot +0 -0
- data/site/fonts/FontAwesome.svg +0 -12
- data/site/fonts/FontAwesome.ttf +0 -0
- data/site/fonts/FontAwesome.woff +0 -0
- data/site/github.html +0 -10
- data/site/help/index.html +0 -244
- data/site/icomoon-selection.json +0 -96
- data/site/img/article-footer.png +0 -0
- data/site/img/footer-arrow.png +0 -0
- data/site/img/footer-logo.png +0 -0
- data/site/img/jekyll-sticker.jpg +0 -0
- data/site/img/jekylllayoutconcept.png +0 -0
- data/site/img/logo-2x.png +0 -0
- data/site/img/logo-rss.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/index.html +0 -267
- data/site/issues.html +0 -10
- data/site/js/html5shiv.min.js +0 -4
- data/site/js/respond.min.js +0 -5
- data/site/latest_version.txt +0 -1
- data/site/news/2013/05/05/jekyll-1-0-0-released/index.html +0 -570
- data/site/news/2013/05/08/jekyll-1-0-1-released/index.html +0 -570
- data/site/news/2013/05/12/jekyll-1-0-2-released/index.html +0 -571
- data/site/news/2013/06/07/jekyll-1-0-3-released/index.html +0 -568
- data/site/news/2013/07/14/jekyll-1-1-0-released/index.html +0 -570
- data/site/news/2013/07/24/jekyll-1-1-1-released/index.html +0 -569
- data/site/news/2013/07/25/jekyll-1-0-4-released/index.html +0 -565
- data/site/news/2013/07/25/jekyll-1-1-2-released/index.html +0 -565
- data/site/news/2013/09/06/jekyll-1-2-0-released/index.html +0 -572
- data/site/news/2013/09/14/jekyll-1-2-1-released/index.html +0 -566
- data/site/news/2013/10/28/jekyll-1-3-0-rc1-released/index.html +0 -564
- data/site/news/2013/11/04/jekyll-1-3-0-released/index.html +0 -599
- data/site/news/2013/11/26/jekyll-1-3-1-released/index.html +0 -568
- data/site/news/2013/12/07/jekyll-1-4-0-released/index.html +0 -583
- data/site/news/2013/12/09/jekyll-1-4-1-released/index.html +0 -565
- data/site/news/2013/12/16/jekyll-1-4-2-released/index.html +0 -564
- data/site/news/2014/01/13/jekyll-1-4-3-released/index.html +0 -573
- data/site/news/2014/03/24/jekyll-1-5-0-released/index.html +0 -564
- data/site/news/2014/03/27/jekyll-1-5-1-released/index.html +0 -569
- data/site/news/2014/05/06/jekyll-turns-2-0-0/index.html +0 -585
- data/site/news/2014/05/08/jekyll-2-0-3-released/index.html +0 -565
- data/site/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/index.html +0 -567
- data/site/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/index.html +0 -582
- data/site/news/2014/07/01/jekyll-2-1-1-released/index.html +0 -579
- data/site/news/2014/07/29/jekyll-2-2-0-released/index.html +0 -568
- data/site/news/2014/08/10/jekyll-2-3-0-released/index.html +0 -588
- data/site/news/2014/09/09/jekyll-2-4-0-released/index.html +0 -574
- data/site/news/2014/11/05/jekylls-midlife-crisis-jekyll-turns-2-5-0/index.html +0 -597
- data/site/news/2014/11/09/jekyll-2-5-1-released/index.html +0 -575
- data/site/news/2014/11/12/jekyll-2-5-2-released/index.html +0 -565
- data/site/news/2014/12/17/alfredxing-welcome-to-jekyll-core/index.html +0 -572
- data/site/news/2014/12/22/jekyll-2-5-3-released/index.html +0 -567
- data/site/news/2015/01/20/jekyll-meet-and-greet/index.html +0 -568
- data/site/news/2015/01/24/jekyll-3-0-0-beta1-released/index.html +0 -588
- data/site/news/2015/02/26/introducing-jekyll-talk/index.html +0 -563
- data/site/news/2015/10/26/jekyll-3-0-released/index.html +0 -592
- data/site/news/2015/11/17/jekyll-3-0-1-released/index.html +0 -576
- data/site/news/2016/01/20/jekyll-3-0-2-released/index.html +0 -566
- data/site/news/2016/01/24/jekyll-3-1-0-released/index.html +0 -599
- data/site/news/2016/01/28/jekyll-3-1-1-released/index.html +0 -583
- data/site/news/2016/02/08/jekyll-3-0-3-released/index.html +0 -578
- data/site/news/2016/02/19/jekyll-3-1-2-released/index.html +0 -569
- data/site/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/index.html +0 -565
- data/site/news/2016/04/19/jekyll-3-0-4-released/index.html +0 -571
- data/site/news/2016/04/19/jekyll-3-1-3-released/index.html +0 -566
- data/site/news/2016/04/26/jekyll-3-0-5-released/index.html +0 -572
- data/site/news/2016/05/18/jekyll-3-1-4-released/index.html +0 -576
- data/site/news/2016/05/18/jekyll-3-1-5-released/index.html +0 -564
- data/site/news/2016/05/19/jekyll-3-1-6-released/index.html +0 -566
- data/site/news/2016/06/03/update-on-jekyll-s-google-summer-of-code-projects/index.html +0 -567
- data/site/news/2016/07/26/jekyll-3-2-0-released/index.html +0 -676
- data/site/news/2016/08/02/jekyll-3-2-1-released/index.html +0 -571
- data/site/news/2016/08/24/jekyll-admin-initial-release/index.html +0 -566
- data/site/news/2016/10/06/jekyll-3-3-is-here/index.html +0 -645
- data/site/news/2016/11/14/jekyll-3-3-1-released/index.html +0 -569
- data/site/news/2017/01/18/jekyll-3-4-0-released/index.html +0 -592
- data/site/news/2017/03/02/jekyll-3-4-1-released/index.html +0 -649
- data/site/news/2017/03/09/jekyll-3-4-2-released/index.html +0 -598
- data/site/news/2017/03/21/jekyll-3-4-3-released/index.html +0 -594
- data/site/news/2017/06/15/jekyll-3-5-0-released/index.html +0 -589
- data/site/news/2017/07/17/jekyll-3-5-1-released/index.html +0 -569
- data/site/news/2017/08/12/jekyll-3-5-2-released/index.html +0 -573
- data/site/news/2017/09/21/jekyll-3-6-0-released/index.html +0 -565
- data/site/news/index.html +0 -3609
- data/site/news/releases/index.html +0 -3344
- data/site/philosophy.html +0 -46
- data/site/readme.md +0 -23
- data/site/robots.txt +0 -1
- data/site/sitemap.xml +0 -485
- data/site/tutorials/convert-site-to-jekyll/index.html +0 -793
- data/site/tutorials/custom-404-page/index.html +0 -358
- data/site/tutorials/home/index.html +0 -323
- data/site/tutorials/index.html +0 -10
- data/site/tutorials/navigation/index.html +0 -872
- data/site/tutorials/orderofinterpretation/index.html +0 -441
data/site/icomoon-selection.json
DELETED
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"IcoMoonType": "selection",
|
|
3
|
-
"icons": [
|
|
4
|
-
{
|
|
5
|
-
"icon": {
|
|
6
|
-
"paths": [
|
|
7
|
-
"M207.429 877.714l52-52-134.286-134.286-52 52v61.143h73.143v73.143h61.143zM506.286 347.429c0-7.429-5.143-12.571-12.571-12.571-3.429 0-6.857 1.143-9.714 4l-309.714 309.714c-2.857 2.857-4 6.286-4 9.714 0 7.429 5.143 12.571 12.571 12.571 3.429 0 6.857-1.143 9.714-4l309.714-309.714c2.857-2.857 4-6.286 4-9.714zM475.429 237.714l237.714 237.714-475.429 475.429h-237.714v-237.714zM865.714 292.571c0 19.429-8 38.286-21.143 51.429l-94.857 94.857-237.714-237.714 94.857-94.286c13.143-13.714 32-21.714 51.429-21.714s38.286 8 52 21.714l134.286 133.714c13.143 13.714 21.143 32.571 21.143 52z"
|
|
8
|
-
],
|
|
9
|
-
"width": 865.7188571428571,
|
|
10
|
-
"attrs": [],
|
|
11
|
-
"isMulticolor": false,
|
|
12
|
-
"isMulticolor2": false,
|
|
13
|
-
"tags": [
|
|
14
|
-
"pencil"
|
|
15
|
-
],
|
|
16
|
-
"defaultCode": 61504,
|
|
17
|
-
"grid": 14
|
|
18
|
-
},
|
|
19
|
-
"attrs": [],
|
|
20
|
-
"properties": {
|
|
21
|
-
"name": "pencil",
|
|
22
|
-
"id": 64,
|
|
23
|
-
"order": 3,
|
|
24
|
-
"prevSize": 28,
|
|
25
|
-
"code": 61504
|
|
26
|
-
},
|
|
27
|
-
"setIdx": 0,
|
|
28
|
-
"setId": 0,
|
|
29
|
-
"iconIdx": 64
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
"icon": {
|
|
33
|
-
"paths": [
|
|
34
|
-
"M832 694.857c0-14.857-5.714-28.571-16-38.857l-118.857-118.857c-10.286-10.286-24.571-16-38.857-16-16.571 0-29.714 6.286-41.143 18.286 18.857 18.857 41.143 34.857 41.143 64 0 30.286-24.571 54.857-54.857 54.857-29.143 0-45.143-22.286-64-41.143-12 11.429-18.857 24.571-18.857 41.714 0 14.286 5.714 28.571 16 38.857l117.714 118.286c10.286 10.286 24.571 15.429 38.857 15.429s28.571-5.143 38.857-14.857l84-83.429c10.286-10.286 16-24 16-38.286zM430.286 292c0-14.286-5.714-28.571-16-38.857l-117.714-118.286c-10.286-10.286-24.571-16-38.857-16s-28.571 5.714-38.857 15.429l-84 83.429c-10.286 10.286-16 24-16 38.286 0 14.857 5.714 28.571 16 38.857l118.857 118.857c10.286 10.286 24.571 15.429 38.857 15.429 16.571 0 29.714-5.714 41.143-17.714-18.857-18.857-41.143-34.857-41.143-64 0-30.286 24.571-54.857 54.857-54.857 29.143 0 45.143 22.286 64 41.143 12-11.429 18.857-24.571 18.857-41.714zM941.714 694.857c0 43.429-17.714 85.714-48.571 116l-84 83.429c-30.857 30.857-72.571 47.429-116 47.429-44 0-85.714-17.143-116.571-48.571l-117.714-118.286c-30.857-30.857-47.429-72.571-47.429-116 0-45.143 18.286-88 50.286-119.429l-50.286-50.286c-31.429 32-73.714 50.286-118.857 50.286-43.429 0-85.714-17.143-116.571-48l-118.857-118.857c-31.429-31.429-48-72.571-48-116.571 0-43.429 17.714-85.714 48.571-116l84-83.429c30.857-30.857 72.571-47.429 116-47.429 44 0 85.714 17.143 116.571 48.571l117.714 118.286c30.857 30.857 47.429 72.571 47.429 116 0 45.143-18.286 88-50.286 119.429l50.286 50.286c31.429-32 73.714-50.286 118.857-50.286 43.429 0 85.714 17.143 116.571 48l118.857 118.857c31.429 31.429 48 72.571 48 116.571z"
|
|
35
|
-
],
|
|
36
|
-
"width": 950.8571428571428,
|
|
37
|
-
"attrs": [],
|
|
38
|
-
"isMulticolor": false,
|
|
39
|
-
"isMulticolor2": false,
|
|
40
|
-
"tags": [
|
|
41
|
-
"chain",
|
|
42
|
-
"link"
|
|
43
|
-
],
|
|
44
|
-
"defaultCode": 61633,
|
|
45
|
-
"grid": 14
|
|
46
|
-
},
|
|
47
|
-
"attrs": [],
|
|
48
|
-
"properties": {
|
|
49
|
-
"name": "chain, link",
|
|
50
|
-
"id": 170,
|
|
51
|
-
"order": 2,
|
|
52
|
-
"prevSize": 28,
|
|
53
|
-
"code": 61633
|
|
54
|
-
},
|
|
55
|
-
"setIdx": 0,
|
|
56
|
-
"setId": 0,
|
|
57
|
-
"iconIdx": 170
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"height": 1024,
|
|
61
|
-
"metadata": {
|
|
62
|
-
"name": "FontAwesome"
|
|
63
|
-
},
|
|
64
|
-
"preferences": {
|
|
65
|
-
"showGlyphs": true,
|
|
66
|
-
"showCodes": true,
|
|
67
|
-
"showQuickUse": true,
|
|
68
|
-
"showQuickUse2": true,
|
|
69
|
-
"showSVGs": true,
|
|
70
|
-
"fontPref": {
|
|
71
|
-
"prefix": "fa-",
|
|
72
|
-
"metadata": {
|
|
73
|
-
"fontFamily": "FontAwesome",
|
|
74
|
-
"majorVersion": 1,
|
|
75
|
-
"minorVersion": 0
|
|
76
|
-
},
|
|
77
|
-
"metrics": {
|
|
78
|
-
"emSize": 1024,
|
|
79
|
-
"baseline": 6.25,
|
|
80
|
-
"whitespace": 50
|
|
81
|
-
},
|
|
82
|
-
"embed": false,
|
|
83
|
-
"showSelector": true,
|
|
84
|
-
"selector": "class",
|
|
85
|
-
"classSelector": ".fa"
|
|
86
|
-
},
|
|
87
|
-
"imagePref": {
|
|
88
|
-
"prefix": "icon-",
|
|
89
|
-
"png": true,
|
|
90
|
-
"useClassSelector": true,
|
|
91
|
-
"color": 0,
|
|
92
|
-
"bgColor": 16777215
|
|
93
|
-
},
|
|
94
|
-
"historySize": 100
|
|
95
|
-
}
|
|
96
|
-
}
|
data/site/img/article-footer.png
DELETED
|
Binary file
|
data/site/img/footer-arrow.png
DELETED
|
Binary file
|
data/site/img/footer-logo.png
DELETED
|
Binary file
|
data/site/img/jekyll-sticker.jpg
DELETED
|
Binary file
|
|
Binary file
|
data/site/img/logo-2x.png
DELETED
|
Binary file
|
data/site/img/logo-rss.png
DELETED
|
Binary file
|
data/site/img/octojekyll.png
DELETED
|
Binary file
|
data/site/index.html
DELETED
|
@@ -1,267 +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.1">
|
|
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>Jekyll • Simple, blog-aware, static sites | Transform your plain text into static websites and blogs</title>
|
|
15
|
-
<meta property="og:title" content="Jekyll • Simple, blog-aware, static sites">
|
|
16
|
-
<meta property="og:locale" content="en_US">
|
|
17
|
-
<meta name="description" content="Transform your plain text into static websites and blogs">
|
|
18
|
-
<meta property="og:description" content="Transform your plain text into static websites and blogs">
|
|
19
|
-
<link rel="canonical" href="https://jekyllrb.com/">
|
|
20
|
-
<meta property="og:url" content="https://jekyllrb.com/">
|
|
21
|
-
<meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
|
|
22
|
-
<meta name="twitter:card" content="summary">
|
|
23
|
-
<meta name="twitter:site" content="@jekyllrb">
|
|
24
|
-
<meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
|
|
25
|
-
<script type="application/ld+json">
|
|
26
|
-
{"name":"Jekyll • Simple, blog-aware, static sites","description":"Transform your plain text into static websites and blogs","url":"https://jekyllrb.com/","headline":"Jekyll • Simple, blog-aware, static sites","dateModified":null,"datePublished":null,"sameAs":null,"@type":"WebSite","author":null,"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"}},"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
|
|
27
|
-
<!-- End Jekyll SEO tag -->
|
|
28
|
-
|
|
29
|
-
<!--[if lt IE 9]>
|
|
30
|
-
<script src="/js/html5shiv.min.js"></script>
|
|
31
|
-
<script src="/js/respond.min.js"></script>
|
|
32
|
-
<![endif]-->
|
|
33
|
-
</head>
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
<body class="wrap">
|
|
37
|
-
<header>
|
|
38
|
-
<nav class="mobile-nav show-on-mobiles">
|
|
39
|
-
<ul>
|
|
40
|
-
<li class="current">
|
|
41
|
-
<a href="/">Home</a>
|
|
42
|
-
</li>
|
|
43
|
-
<li class="">
|
|
44
|
-
<a href="/docs/home/">Docs</a>
|
|
45
|
-
</li>
|
|
46
|
-
<li class="">
|
|
47
|
-
<a href="/news/">News</a>
|
|
48
|
-
</li>
|
|
49
|
-
<li class="">
|
|
50
|
-
<a href="/community/">Community</a>
|
|
51
|
-
</li>
|
|
52
|
-
<li class="">
|
|
53
|
-
<a href="/help/">Help</a>
|
|
54
|
-
</li>
|
|
55
|
-
<li>
|
|
56
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
57
|
-
</li>
|
|
58
|
-
</ul>
|
|
59
|
-
|
|
60
|
-
</nav>
|
|
61
|
-
<div class="grid">
|
|
62
|
-
<div class="unit one-third center-on-mobiles">
|
|
63
|
-
<h1>
|
|
64
|
-
<a href="/">
|
|
65
|
-
<span class="sr-only">Jekyll</span>
|
|
66
|
-
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
|
|
67
|
-
</a>
|
|
68
|
-
</h1>
|
|
69
|
-
</div>
|
|
70
|
-
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
|
71
|
-
<ul>
|
|
72
|
-
<li class="current">
|
|
73
|
-
<a href="/">Home</a>
|
|
74
|
-
</li>
|
|
75
|
-
<li class="">
|
|
76
|
-
<a href="/docs/home/">Docs</a>
|
|
77
|
-
</li>
|
|
78
|
-
<li class="">
|
|
79
|
-
<a href="/news/">News</a>
|
|
80
|
-
</li>
|
|
81
|
-
<li class="">
|
|
82
|
-
<a href="/community/">Community</a>
|
|
83
|
-
</li>
|
|
84
|
-
<li class="">
|
|
85
|
-
<a href="/help/">Help</a>
|
|
86
|
-
</li>
|
|
87
|
-
<li>
|
|
88
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
89
|
-
</li>
|
|
90
|
-
</ul>
|
|
91
|
-
|
|
92
|
-
</nav>
|
|
93
|
-
</div>
|
|
94
|
-
</header>
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
<section class="intro">
|
|
98
|
-
<div class="grid">
|
|
99
|
-
<div class="unit whole center-on-mobiles">
|
|
100
|
-
<p class="first">Transform your plain text into static websites and blogs.</p>
|
|
101
|
-
</div>
|
|
102
|
-
</div>
|
|
103
|
-
</section>
|
|
104
|
-
<section class="features">
|
|
105
|
-
<div class="grid">
|
|
106
|
-
<div class="unit one-third">
|
|
107
|
-
<h2>Simple</h2>
|
|
108
|
-
<p>
|
|
109
|
-
No more databases, comment moderation, or pesky updates to install—just <em>your content</em>.
|
|
110
|
-
</p>
|
|
111
|
-
<a href="/docs/usage/">How Jekyll works →</a>
|
|
112
|
-
</div>
|
|
113
|
-
<div class="unit one-third">
|
|
114
|
-
<h2>Static</h2>
|
|
115
|
-
<p><a href="https://daringfireball.net/projects/markdown/">Markdown</a> (or <a href="http://redcloth.org/textile">Textile</a>), <a href="https://github.com/Shopify/liquid/wiki">Liquid</a>, HTML <span class="amp">&</span> CSS go in. Static sites come out ready for deployment.</p>
|
|
116
|
-
<a href="/docs/templates/">Jekyll template guide →</a>
|
|
117
|
-
</div>
|
|
118
|
-
<div class="unit one-third">
|
|
119
|
-
<h2>Blog-aware</h2>
|
|
120
|
-
<p>
|
|
121
|
-
Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.
|
|
122
|
-
</p>
|
|
123
|
-
<a href="http://import.jekyllrb.com">Migrate your blog →</a>
|
|
124
|
-
</div>
|
|
125
|
-
<div class="clear"></div>
|
|
126
|
-
</div>
|
|
127
|
-
</section>
|
|
128
|
-
<section class="quickstart">
|
|
129
|
-
<div class="grid">
|
|
130
|
-
<div class="unit golden-small center-on-mobiles">
|
|
131
|
-
<h3>Get up and running <em>in seconds</em>.</h3>
|
|
132
|
-
</div>
|
|
133
|
-
<div class="unit golden-large code">
|
|
134
|
-
<p class="title">Quick-start Instructions</p>
|
|
135
|
-
<div class="shell">
|
|
136
|
-
<p class="line">
|
|
137
|
-
<span class="path">~</span>
|
|
138
|
-
<span class="prompt">$</span>
|
|
139
|
-
<span class="command">gem install jekyll bundler</span>
|
|
140
|
-
</p>
|
|
141
|
-
<p class="line">
|
|
142
|
-
<span class="path">~</span>
|
|
143
|
-
<span class="prompt">$</span>
|
|
144
|
-
<span class="command">jekyll new my-awesome-site</span>
|
|
145
|
-
</p>
|
|
146
|
-
<p class="line">
|
|
147
|
-
<span class="path">~</span>
|
|
148
|
-
<span class="prompt">$</span>
|
|
149
|
-
<span class="command">cd my-awesome-site</span>
|
|
150
|
-
</p>
|
|
151
|
-
<p class="line">
|
|
152
|
-
<span class="path">~/my-awesome-site</span>
|
|
153
|
-
<span class="prompt">$</span>
|
|
154
|
-
<span class="command">bundle exec jekyll serve</span>
|
|
155
|
-
</p>
|
|
156
|
-
<p class="line">
|
|
157
|
-
<span class="output"># => Now browse to http://localhost:4000</span>
|
|
158
|
-
</p>
|
|
159
|
-
</div>
|
|
160
|
-
</div>
|
|
161
|
-
<div class="clear"></div>
|
|
162
|
-
</div>
|
|
163
|
-
</section>
|
|
164
|
-
<section class="free-hosting">
|
|
165
|
-
<div class="grid">
|
|
166
|
-
<div class="unit whole">
|
|
167
|
-
<div class="grid pane">
|
|
168
|
-
<div class="unit whole center-on-mobiles">
|
|
169
|
-
<img src="img/octojekyll.png" width="300" height="251" alt="Free Jekyll hosting on GitHub Pages">
|
|
170
|
-
<div class="pane-content">
|
|
171
|
-
<h2 class="center-on-mobiles">
|
|
172
|
-
<strong>Free hosting</strong> with GitHub Pages</h2>
|
|
173
|
-
<p>Sick of dealing with hosting companies? <a href="https://pages.github.com/">GitHub Pages</a> are <em>powered by Jekyll</em>, so you can easily deploy your site using GitHub for free—<a href="https://help.github.com/articles/about-supported-custom-domains/">custom domain name</a> and all.</p>
|
|
174
|
-
<a href="https://pages.github.com/">Learn more about GitHub Pages →</a>
|
|
175
|
-
</div>
|
|
176
|
-
</div>
|
|
177
|
-
<div class="clear"></div>
|
|
178
|
-
</div>
|
|
179
|
-
</div>
|
|
180
|
-
</div>
|
|
181
|
-
</section>
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
<footer>
|
|
185
|
-
<div class="grid">
|
|
186
|
-
<div class="unit one-third center-on-mobiles">
|
|
187
|
-
<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>
|
|
188
|
-
</div>
|
|
189
|
-
<div class="unit two-thirds align-right center-on-mobiles">
|
|
190
|
-
<p>
|
|
191
|
-
Proudly hosted by
|
|
192
|
-
<a href="https://github.com">
|
|
193
|
-
<img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
|
|
194
|
-
</a>
|
|
195
|
-
</p>
|
|
196
|
-
</div>
|
|
197
|
-
</div>
|
|
198
|
-
</footer>
|
|
199
|
-
|
|
200
|
-
<script>
|
|
201
|
-
var anchorForId = function (id) {
|
|
202
|
-
var anchor = document.createElement("a");
|
|
203
|
-
anchor.className = "header-link";
|
|
204
|
-
anchor.href = "#" + id;
|
|
205
|
-
anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
|
|
206
|
-
anchor.title = "Permalink";
|
|
207
|
-
return anchor;
|
|
208
|
-
};
|
|
209
|
-
|
|
210
|
-
var linkifyAnchors = function (level, containingElement) {
|
|
211
|
-
var headers = containingElement.getElementsByTagName("h" + level);
|
|
212
|
-
for (var h = 0; h < headers.length; h++) {
|
|
213
|
-
var header = headers[h];
|
|
214
|
-
|
|
215
|
-
if (typeof header.id !== "undefined" && header.id !== "") {
|
|
216
|
-
header.appendChild(anchorForId(header.id));
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
};
|
|
220
|
-
|
|
221
|
-
document.onreadystatechange = function () {
|
|
222
|
-
if (this.readyState === "complete") {
|
|
223
|
-
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
|
|
224
|
-
if (!contentBlock) {
|
|
225
|
-
return;
|
|
226
|
-
}
|
|
227
|
-
for (var level = 1; level <= 6; level++) {
|
|
228
|
-
linkifyAnchors(level, contentBlock);
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
};
|
|
232
|
-
</script>
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
<!-- Gauges (http://get.gaug.es/) -->
|
|
236
|
-
<script>
|
|
237
|
-
var _gauges = _gauges || [];
|
|
238
|
-
(function() {
|
|
239
|
-
var t = document.createElement('script');
|
|
240
|
-
t.type = 'text/javascript';
|
|
241
|
-
t.async = true;
|
|
242
|
-
t.id = 'gauges-tracker';
|
|
243
|
-
t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
|
|
244
|
-
t.src = '//secure.gaug.es/track.js';
|
|
245
|
-
var s = document.getElementsByTagName('script')[0];
|
|
246
|
-
s.parentNode.insertBefore(t, s);
|
|
247
|
-
})();
|
|
248
|
-
</script>
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
<!-- Google Analytics (https://www.google.com/analytics) -->
|
|
253
|
-
<script>
|
|
254
|
-
!function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
|
|
255
|
-
(j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
|
|
256
|
-
L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
|
|
257
|
-
L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
|
|
258
|
-
|
|
259
|
-
ga('create', 'UA-50755011-1', 'jekyllrb.com');
|
|
260
|
-
ga('send', 'pageview');
|
|
261
|
-
|
|
262
|
-
</script>
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
</body>
|
|
267
|
-
</html>
|
data/site/issues.html
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en-US">
|
|
3
|
-
<meta charset="utf-8">
|
|
4
|
-
<title>Redirecting…</title>
|
|
5
|
-
<link rel="canonical" href="https://github.com/jekyll/jekyll/issues">
|
|
6
|
-
<meta http-equiv="refresh" content="0; url=https://github.com/jekyll/jekyll/issues">
|
|
7
|
-
<h1>Redirecting…</h1>
|
|
8
|
-
<a href="https://github.com/jekyll/jekyll/issues">Click here if you are not redirected.</a>
|
|
9
|
-
<script>location="https://github.com/jekyll/jekyll/issues"</script>
|
|
10
|
-
</html>
|
data/site/js/html5shiv.min.js
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @preserve HTML5 Shiv 3.7.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
|
3
|
-
*/
|
|
4
|
-
!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=t.elements;return"string"==typeof a?a.split(" "):a}function e(a,b){var c=t.elements;"string"!=typeof c&&(c=c.join(" ")),"string"!=typeof a&&(a=a.join(" ")),t.elements=c+" "+a,j(b)}function f(a){var b=s[a[q]];return b||(b={},r++,a[q]=r,s[r]=b),b}function g(a,c,d){if(c||(c=b),l)return c.createElement(a);d||(d=f(c));var e;return e=d.cache[a]?d.cache[a].cloneNode():p.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!e.canHaveChildren||o.test(a)||e.tagUrn?e:d.frag.appendChild(e)}function h(a,c){if(a||(a=b),l)return a.createDocumentFragment();c=c||f(a);for(var e=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)e.createElement(h[g]);return e}function i(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return t.shivMethods?g(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(t,b.frag)}function j(a){a||(a=b);var d=f(a);return!t.shivCSS||k||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.2",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){k=!0,l=!0}}();var t={elements:n.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:m,shivCSS:n.shivCSS!==!1,supportsUnknownElements:l,shivMethods:n.shivMethods!==!1,type:"default",shivDocument:j,createElement:g,createDocumentFragment:h,addElements:e};a.html5=t,j(b)}(this,document);
|
data/site/js/respond.min.js
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/*! Respond.js v1.4.2: min/max-width media query polyfill * Copyright 2013 Scott Jehl
|
|
2
|
-
* Licensed under https://github.com/scottjehl/Respond/blob/master/LICENSE-MIT
|
|
3
|
-
* */
|
|
4
|
-
|
|
5
|
-
!function(a){"use strict";a.matchMedia=a.matchMedia||function(a){var b,c=a.documentElement,d=c.firstElementChild||c.firstChild,e=a.createElement("body"),f=a.createElement("div");return f.id="mq-test-1",f.style.cssText="position:absolute;top:-100em",e.style.background="none",e.appendChild(f),function(a){return f.innerHTML='­<style media="'+a+'"> #mq-test-1 { width: 42px; }</style>',c.insertBefore(e,d),b=42===f.offsetWidth,c.removeChild(e),{matches:b,media:a}}}(a.document)}(this),function(a){"use strict";function b(){u(!0)}var c={};a.respond=c,c.update=function(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/gi,urls:/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,findStyles:/@media *([^\{]+)\{([\S\s]+?)$/,only:/(only\s+)?([a-zA-Z]+)\s?/,minw:/\([\s]*min\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/,maxw:/\([\s]*max\-width\s*:[\s]*([\s]*[0-9\.]+)(px|em)[\s]*\)/},c.mediaQueriesSupported=a.matchMedia&&null!==a.matchMedia("only all")&&a.matchMedia("only all").matches,!c.mediaQueriesSupported){var g,h,i,j=a.document,k=j.documentElement,l=[],m=[],n=[],o={},p=30,q=j.getElementsByTagName("head")[0]||k,r=j.getElementsByTagName("base")[0],s=q.getElementsByTagName("link"),t=function(){var a,b=j.createElement("div"),c=j.body,d=k.style.fontSize,e=c&&c.style.fontSize,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",c||(c=f=j.createElement("body"),c.style.background="none"),k.style.fontSize="100%",c.style.fontSize="100%",c.appendChild(b),f&&k.insertBefore(c,k.firstChild),a=b.offsetWidth,f?k.removeChild(c):c.removeChild(b),k.style.fontSize=d,e&&(c.style.fontSize=e),a=i=parseFloat(a)},u=function(b){var c="clientWidth",d=k[c],e="CSS1Compat"===j.compatMode&&d||j.body[c]||d,f={},o=s[s.length-1],r=(new Date).getTime();if(b&&g&&p>r-g)return a.clearTimeout(h),h=a.setTimeout(u,p),void 0;g=r;for(var v in l)if(l.hasOwnProperty(v)){var w=l[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?i||t():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?i||t():1)),w.hasquery&&(z&&A||!(z||e>=x)||!(A||y>=e))||(f[w.media]||(f[w.media]=[]),f[w.media].push(m[w.rules]))}for(var C in n)n.hasOwnProperty(C)&&n[C]&&n[C].parentNode===q&&q.removeChild(n[C]);n.length=0;for(var D in f)if(f.hasOwnProperty(D)){var E=j.createElement("style"),F=f[D].join("\n");E.type="text/css",E.media=D,q.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(j.createTextNode(F)),n.push(E)}},v=function(a,b,d){var e=a.replace(c.regex.keyframes,"").match(c.regex.media),f=e&&e.length||0;b=b.substring(0,b.lastIndexOf("/"));var g=function(a){return a.replace(c.regex.urls,"$1"+b+"$2$3")},h=!f&&d;b.length&&(b+="/"),h&&(f=1);for(var i=0;f>i;i++){var j,k,n,o;h?(j=d,m.push(g(a))):(j=e[i].match(c.regex.findStyles)&&RegExp.$1,m.push(RegExp.$2&&g(RegExp.$2))),n=j.split(","),o=n.length;for(var p=0;o>p;p++)k=n[p],l.push({media:k.split("(")[0].match(c.regex.only)&&RegExp.$2||"all",rules:m.length-1,hasquery:k.indexOf("(")>-1,minw:k.match(c.regex.minw)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:k.match(c.regex.maxw)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},w=function(){if(d.length){var b=d.shift();f(b.href,function(c){v(c,b.href,b.media),o[b.href]=!0,a.setTimeout(function(){w()},0)})}},x=function(){for(var b=0;b<s.length;b++){var c=s[b],e=c.href,f=c.media,g=c.rel&&"stylesheet"===c.rel.toLowerCase();e&&g&&!o[e]&&(c.styleSheet&&c.styleSheet.rawCssText?(v(c.styleSheet.rawCssText,e,f),o[e]=!0):(!/^([a-zA-Z:]*\/\/)/.test(e)&&!r||e.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&("//"===e.substring(0,2)&&(e=a.location.protocol+e),d.push({href:e,media:f})))}w()};x(),c.update=x,c.getEmValue=t,a.addEventListener?a.addEventListener("resize",b,!1):a.attachEvent&&a.attachEvent("onresize",b)}}(this);
|
data/site/latest_version.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
3.6.1
|
|
@@ -1,570 +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.1">
|
|
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>Jekyll 1.0.0 Released | Jekyll • Simple, blog-aware, static sites</title>
|
|
15
|
-
<meta property="og:title" content="Jekyll 1.0.0 Released">
|
|
16
|
-
<meta name="author" content="parkr">
|
|
17
|
-
<meta property="og:locale" content="en_US">
|
|
18
|
-
<meta name="description" content="Hey! After many months of hard work by Jekyll’s contributors, we’re excited to announce the first major release of the project in a long while. v1.0.0 is finally here! While the list of improvements and bug fixes is quite lengthy, here are the highlights (thanks to @benbalter for the examples and for compiling this list):">
|
|
19
|
-
<meta property="og:description" content="Hey! After many months of hard work by Jekyll’s contributors, we’re excited to announce the first major release of the project in a long while. v1.0.0 is finally here! While the list of improvements and bug fixes is quite lengthy, here are the highlights (thanks to @benbalter for the examples and for compiling this list):">
|
|
20
|
-
<link rel="canonical" href="https://jekyllrb.com/news/2013/05/05/jekyll-1-0-0-released/">
|
|
21
|
-
<meta property="og:url" content="https://jekyllrb.com/news/2013/05/05/jekyll-1-0-0-released/">
|
|
22
|
-
<meta property="og:site_name" content="Jekyll • Simple, blog-aware, static sites">
|
|
23
|
-
<meta property="og:type" content="article">
|
|
24
|
-
<meta property="article:published_time" content="2013-05-05T17:12:52-07:00">
|
|
25
|
-
<meta name="twitter:card" content="summary">
|
|
26
|
-
<meta name="twitter:site" content="@jekyllrb">
|
|
27
|
-
<meta name="twitter:creator" content="@parkr">
|
|
28
|
-
<meta name="google-site-verification" content="onQcXpAvtHBrUI5LlroHNE_FP0b2qvFyPq7VZw36iEY">
|
|
29
|
-
<script type="application/ld+json">
|
|
30
|
-
{"name":null,"description":"Hey! After many months of hard work by Jekyll’s contributors, we’re excited to announce the first major release of the project in a long while. v1.0.0 is finally here! While the list of improvements and bug fixes is quite lengthy, here are the highlights (thanks to @benbalter for the examples and for compiling this list):","url":"https://jekyllrb.com/news/2013/05/05/jekyll-1-0-0-released/","headline":"Jekyll 1.0.0 Released","dateModified":"2013-05-05T17:12:52-07:00","datePublished":"2013-05-05T17:12:52-07:00","sameAs":null,"@type":"BlogPosting","author":{"@type":"Person","name":"parkr"},"image":null,"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://jekyllrb.com/img/logo-2x.png"},"name":"parkr"},"mainEntityOfPage":{"@type":"WebPage","@id":"https://jekyllrb.com/news/2013/05/05/jekyll-1-0-0-released/"},"@context":"http://schema.org"}</script>
|
|
31
|
-
<!-- End Jekyll SEO tag -->
|
|
32
|
-
|
|
33
|
-
<!--[if lt IE 9]>
|
|
34
|
-
<script src="/js/html5shiv.min.js"></script>
|
|
35
|
-
<script src="/js/respond.min.js"></script>
|
|
36
|
-
<![endif]-->
|
|
37
|
-
</head>
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
<body class="wrap">
|
|
41
|
-
<header>
|
|
42
|
-
<nav class="mobile-nav show-on-mobiles">
|
|
43
|
-
<ul>
|
|
44
|
-
<li class="">
|
|
45
|
-
<a href="/">Home</a>
|
|
46
|
-
</li>
|
|
47
|
-
<li class="">
|
|
48
|
-
<a href="/docs/home/">Docs</a>
|
|
49
|
-
</li>
|
|
50
|
-
<li class="current">
|
|
51
|
-
<a href="/news/">News</a>
|
|
52
|
-
</li>
|
|
53
|
-
<li class="">
|
|
54
|
-
<a href="/community/">Community</a>
|
|
55
|
-
</li>
|
|
56
|
-
<li class="">
|
|
57
|
-
<a href="/help/">Help</a>
|
|
58
|
-
</li>
|
|
59
|
-
<li>
|
|
60
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
61
|
-
</li>
|
|
62
|
-
</ul>
|
|
63
|
-
|
|
64
|
-
</nav>
|
|
65
|
-
<div class="grid">
|
|
66
|
-
<div class="unit one-third center-on-mobiles">
|
|
67
|
-
<h1>
|
|
68
|
-
<a href="/">
|
|
69
|
-
<span class="sr-only">Jekyll</span>
|
|
70
|
-
<img src="/img/logo-2x.png" width="249" height="115" alt="Jekyll Logo">
|
|
71
|
-
</a>
|
|
72
|
-
</h1>
|
|
73
|
-
</div>
|
|
74
|
-
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
|
75
|
-
<ul>
|
|
76
|
-
<li class="">
|
|
77
|
-
<a href="/">Home</a>
|
|
78
|
-
</li>
|
|
79
|
-
<li class="">
|
|
80
|
-
<a href="/docs/home/">Docs</a>
|
|
81
|
-
</li>
|
|
82
|
-
<li class="current">
|
|
83
|
-
<a href="/news/">News</a>
|
|
84
|
-
</li>
|
|
85
|
-
<li class="">
|
|
86
|
-
<a href="/community/">Community</a>
|
|
87
|
-
</li>
|
|
88
|
-
<li class="">
|
|
89
|
-
<a href="/help/">Help</a>
|
|
90
|
-
</li>
|
|
91
|
-
<li>
|
|
92
|
-
<a href="https://github.com/jekyll/jekyll">GitHub</a>
|
|
93
|
-
</li>
|
|
94
|
-
</ul>
|
|
95
|
-
|
|
96
|
-
</nav>
|
|
97
|
-
</div>
|
|
98
|
-
</header>
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
<section class="news">
|
|
102
|
-
<div class="grid">
|
|
103
|
-
|
|
104
|
-
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
|
105
|
-
<select onchange="if (this.value) window.location.href=this.value">
|
|
106
|
-
<option value="">Navigate the blog…</option>
|
|
107
|
-
<option value="/news/">Home</option>
|
|
108
|
-
<optgroup label="v1.x">
|
|
109
|
-
|
|
110
|
-
<option value="/news/2017/09/21/jekyll-3-6-0-released/">Jekyll turns 3.6!</option>
|
|
111
|
-
|
|
112
|
-
<option value="/news/2017/08/12/jekyll-3-5-2-released/">Jekyll 3.5.2 Released</option>
|
|
113
|
-
|
|
114
|
-
<option value="/news/2017/07/17/jekyll-3-5-1-released/">Jekyll 3.5.1 Released</option>
|
|
115
|
-
|
|
116
|
-
<option value="/news/2017/06/15/jekyll-3-5-0-released/">Jekyll turns 3.5, oh my!</option>
|
|
117
|
-
|
|
118
|
-
<option value="/news/2017/03/21/jekyll-3-4-3-released/">Jekyll 3.4.3 Released</option>
|
|
119
|
-
|
|
120
|
-
<option value="/news/2017/03/09/jekyll-3-4-2-released/">Jekyll 3.4.2 Released</option>
|
|
121
|
-
|
|
122
|
-
<option value="/news/2017/03/02/jekyll-3-4-1-released/">Jekyll 3.4.1, or "Unintended Consequences"</option>
|
|
123
|
-
|
|
124
|
-
<option value="/news/2017/01/18/jekyll-3-4-0-released/">Jekyll turns 3.4.0</option>
|
|
125
|
-
|
|
126
|
-
<option value="/news/2016/11/14/jekyll-3-3-1-released/">Jekyll 3.3.1 Released</option>
|
|
127
|
-
|
|
128
|
-
<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>
|
|
129
|
-
|
|
130
|
-
<option value="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</option>
|
|
131
|
-
|
|
132
|
-
<option value="/news/2016/08/02/jekyll-3-2-1-released/">Jekyll 3.2.1 Released with Fix for Windows</option>
|
|
133
|
-
|
|
134
|
-
<option value="/news/2016/07/26/jekyll-3-2-0-released/">Jekyll turns 3.2</option>
|
|
135
|
-
|
|
136
|
-
<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>
|
|
137
|
-
|
|
138
|
-
<option value="/news/2016/05/19/jekyll-3-1-6-released/">Jekyll 3.1.6 Released</option>
|
|
139
|
-
|
|
140
|
-
<option value="/news/2016/05/18/jekyll-3-1-5-released/">Jekyll 3.1.5 Released</option>
|
|
141
|
-
|
|
142
|
-
<option value="/news/2016/05/18/jekyll-3-1-4-released/">Jekyll 3.1.4 "Stability Sam" Released</option>
|
|
143
|
-
|
|
144
|
-
<option value="/news/2016/04/26/jekyll-3-0-5-released/">Jekyll 3.0.5 Released</option>
|
|
145
|
-
|
|
146
|
-
<option value="/news/2016/04/19/jekyll-3-1-3-released/">Jekyll 3.1.3 Released</option>
|
|
147
|
-
|
|
148
|
-
<option value="/news/2016/04/19/jekyll-3-0-4-released/">Jekyll 3.0.4 Released</option>
|
|
149
|
-
|
|
150
|
-
<option value="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</option>
|
|
151
|
-
|
|
152
|
-
<option value="/news/2016/02/19/jekyll-3-1-2-released/">Jekyll 3.1.2 Released!</option>
|
|
153
|
-
|
|
154
|
-
<option value="/news/2016/02/08/jekyll-3-0-3-released/">Jekyll 3.0.3 Released</option>
|
|
155
|
-
|
|
156
|
-
<option value="/news/2016/01/28/jekyll-3-1-1-released/">Jekyll 3.1.1 Released</option>
|
|
157
|
-
|
|
158
|
-
<option value="/news/2016/01/24/jekyll-3-1-0-released/">Jekyll 3.1.0 Released</option>
|
|
159
|
-
|
|
160
|
-
<option value="/news/2016/01/20/jekyll-3-0-2-released/">Jekyll 3.0.2 Released</option>
|
|
161
|
-
|
|
162
|
-
<option value="/news/2015/11/17/jekyll-3-0-1-released/">Jekyll 3.0.1 Released</option>
|
|
163
|
-
|
|
164
|
-
<option value="/news/2015/10/26/jekyll-3-0-released/">Jekyll 3.0 Released</option>
|
|
165
|
-
|
|
166
|
-
<option value="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</option>
|
|
167
|
-
|
|
168
|
-
<option value="/news/2015/01/24/jekyll-3-0-0-beta1-released/">Jekyll 3.0.0.beta1 Released</option>
|
|
169
|
-
|
|
170
|
-
<option value="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet & Greet at GitHub HQ</option>
|
|
171
|
-
|
|
172
|
-
<option value="/news/2014/12/22/jekyll-2-5-3-released/">Jekyll Release for the Holidays! v2.5.3 Out</option>
|
|
173
|
-
|
|
174
|
-
<option value="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</option>
|
|
175
|
-
|
|
176
|
-
<option value="/news/2014/11/12/jekyll-2-5-2-released/">Jekyll 2.5.2 Released</option>
|
|
177
|
-
|
|
178
|
-
<option value="/news/2014/11/09/jekyll-2-5-1-released/">Jekyll 2.5.1 Released</option>
|
|
179
|
-
|
|
180
|
-
<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>
|
|
181
|
-
|
|
182
|
-
<option value="/news/2014/09/09/jekyll-2-4-0-released/">A Wild Jekyll 2.4.0 Appeared!</option>
|
|
183
|
-
|
|
184
|
-
<option value="/news/2014/08/10/jekyll-2-3-0-released/">Jekyll 2.3.0 Released</option>
|
|
185
|
-
|
|
186
|
-
<option value="/news/2014/07/29/jekyll-2-2-0-released/">Jekyll 2.2.0 Released</option>
|
|
187
|
-
|
|
188
|
-
<option value="/news/2014/07/01/jekyll-2-1-1-released/">Jekyll 2.1.1 Released</option>
|
|
189
|
-
|
|
190
|
-
<option value="/news/2014/06/28/jekyll-turns-21-i-mean-2-1-0/">Jekyll Turns 21! Err... I mean 2.1.0.</option>
|
|
191
|
-
|
|
192
|
-
<option value="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</option>
|
|
193
|
-
|
|
194
|
-
<option value="/news/2014/05/08/jekyll-2-0-3-released/">Jekyll 2.0.3 Released</option>
|
|
195
|
-
|
|
196
|
-
<option value="/news/2014/05/06/jekyll-turns-2-0-0/">Jekyll turns 2.0.0</option>
|
|
197
|
-
|
|
198
|
-
<option value="/news/2014/03/27/jekyll-1-5-1-released/">Jekyll 1.5.1 Released</option>
|
|
199
|
-
|
|
200
|
-
<option value="/news/2014/03/24/jekyll-1-5-0-released/">Jekyll 1.5.0 Released</option>
|
|
201
|
-
|
|
202
|
-
<option value="/news/2014/01/13/jekyll-1-4-3-released/">Jekyll 1.4.3 Released</option>
|
|
203
|
-
|
|
204
|
-
<option value="/news/2013/12/16/jekyll-1-4-2-released/">Jekyll 1.4.2 Released</option>
|
|
205
|
-
|
|
206
|
-
<option value="/news/2013/12/09/jekyll-1-4-1-released/">Jekyll 1.4.1 Released</option>
|
|
207
|
-
|
|
208
|
-
<option value="/news/2013/12/07/jekyll-1-4-0-released/">Jekyll 1.4.0 Released</option>
|
|
209
|
-
|
|
210
|
-
<option value="/news/2013/11/26/jekyll-1-3-1-released/">Jekyll 1.3.1 Released</option>
|
|
211
|
-
|
|
212
|
-
<option value="/news/2013/11/04/jekyll-1-3-0-released/">Jekyll 1.3.0 Released</option>
|
|
213
|
-
|
|
214
|
-
<option value="/news/2013/10/28/jekyll-1-3-0-rc1-released/">Jekyll 1.3.0.rc1 Released</option>
|
|
215
|
-
|
|
216
|
-
<option value="/news/2013/09/14/jekyll-1-2-1-released/">Jekyll 1.2.1 Released</option>
|
|
217
|
-
|
|
218
|
-
<option value="/news/2013/09/06/jekyll-1-2-0-released/">Jekyll 1.2.0 Released</option>
|
|
219
|
-
|
|
220
|
-
<option value="/news/2013/07/25/jekyll-1-1-2-released/">Jekyll 1.1.2 Released</option>
|
|
221
|
-
|
|
222
|
-
<option value="/news/2013/07/25/jekyll-1-0-4-released/">Jekyll 1.0.4 Released</option>
|
|
223
|
-
|
|
224
|
-
<option value="/news/2013/07/24/jekyll-1-1-1-released/">Jekyll 1.1.1 Released</option>
|
|
225
|
-
|
|
226
|
-
<option value="/news/2013/07/14/jekyll-1-1-0-released/">Jekyll 1.1.0 Released</option>
|
|
227
|
-
|
|
228
|
-
<option value="/news/2013/06/07/jekyll-1-0-3-released/">Jekyll 1.0.3 Released</option>
|
|
229
|
-
|
|
230
|
-
<option value="/news/2013/05/12/jekyll-1-0-2-released/">Jekyll 1.0.2 Released</option>
|
|
231
|
-
|
|
232
|
-
<option value="/news/2013/05/08/jekyll-1-0-1-released/">Jekyll 1.0.1 Released</option>
|
|
233
|
-
|
|
234
|
-
<option value="/news/2013/05/05/jekyll-1-0-0-released/">Jekyll 1.0.0 Released</option>
|
|
235
|
-
|
|
236
|
-
</optgroup>
|
|
237
|
-
</select>
|
|
238
|
-
</div>
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
<div class="unit four-fifths">
|
|
242
|
-
<article>
|
|
243
|
-
<h2>
|
|
244
|
-
Jekyll 1.0.0 Released
|
|
245
|
-
<a href="/news/2013/05/05/jekyll-1-0-0-released/" class="permalink" title="Permalink">∞</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
|
-
05 May 2013
|
|
255
|
-
</span>
|
|
256
|
-
<a href="https://github.com/parkr" class="post-author">
|
|
257
|
-
<img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/parkr?v=3&s=24" alt="parkr" srcset="https://avatars3.githubusercontent.com/parkr?v=3&s=24 1x, https://avatars3.githubusercontent.com/parkr?v=3&s=48 2x, https://avatars3.githubusercontent.com/parkr?v=3&s=72 3x, https://avatars3.githubusercontent.com/parkr?v=3&s=96 4x" width="24" height="24" data-proofer-ignore="true">
|
|
258
|
-
parkr
|
|
259
|
-
</a>
|
|
260
|
-
</div>
|
|
261
|
-
<div class="post-content">
|
|
262
|
-
<p>Hey! After many months of hard work by Jekyll’s contributors, we’re excited
|
|
263
|
-
to announce the first major release of the project in a long while. v1.0.0 is
|
|
264
|
-
finally here! While the list of improvements and bug fixes is <a href="/docs/history/#v1-0-0">quite lengthy</a>,
|
|
265
|
-
here are the highlights (thanks to <a href="https://twitter.com/BenBalter">@benbalter</a> for the
|
|
266
|
-
examples and for compiling this list):</p>
|
|
267
|
-
|
|
268
|
-
<ul>
|
|
269
|
-
<li>Support for the Gist tag for easily embedding Gists (<a href="https://gist.github.com/benbalter/5555251">example</a>)</li>
|
|
270
|
-
<li>Automatically generated post excerpts (<a href="https://gist.github.com/benbalter/5555369">example</a>)</li>
|
|
271
|
-
<li>Save and preview drafts before publishing (<a href="https://gist.github.com/benbalter/5555992">example</a>)</li>
|
|
272
|
-
</ul>
|
|
273
|
-
|
|
274
|
-
<p>Take a look at the <a href="/docs/upgrading/">Upgrading</a> page in the docs for more detailed information.</p>
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
</div>
|
|
278
|
-
</article>
|
|
279
|
-
|
|
280
|
-
</div>
|
|
281
|
-
|
|
282
|
-
<div class="unit one-fifth hide-on-mobiles">
|
|
283
|
-
<aside>
|
|
284
|
-
<ul>
|
|
285
|
-
<li class="">
|
|
286
|
-
<a href="/news/">All News</a>
|
|
287
|
-
</li>
|
|
288
|
-
<li class="">
|
|
289
|
-
<a href="/news/releases/">Jekyll Releases</a>
|
|
290
|
-
</li>
|
|
291
|
-
</ul>
|
|
292
|
-
<h4>Recent Releases</h4>
|
|
293
|
-
<ul>
|
|
294
|
-
|
|
295
|
-
<li class="">
|
|
296
|
-
<a href="/news/2017/09/21/jekyll-3-6-0-released/">Version 3.6.0</a>
|
|
297
|
-
</li>
|
|
298
|
-
|
|
299
|
-
<li class="">
|
|
300
|
-
<a href="/news/2017/08/12/jekyll-3-5-2-released/">Version 3.5.2</a>
|
|
301
|
-
</li>
|
|
302
|
-
|
|
303
|
-
<li class="">
|
|
304
|
-
<a href="/news/2017/07/17/jekyll-3-5-1-released/">Version 3.5.1</a>
|
|
305
|
-
</li>
|
|
306
|
-
|
|
307
|
-
<li class="">
|
|
308
|
-
<a href="/news/2017/06/15/jekyll-3-5-0-released/">Version 3.5.0</a>
|
|
309
|
-
</li>
|
|
310
|
-
|
|
311
|
-
<li class="">
|
|
312
|
-
<a href="/news/2017/03/21/jekyll-3-4-3-released/">Version 3.4.3</a>
|
|
313
|
-
</li>
|
|
314
|
-
|
|
315
|
-
<li>
|
|
316
|
-
<a href="/docs/history/">History »</a>
|
|
317
|
-
</li>
|
|
318
|
-
</ul>
|
|
319
|
-
<h4>Other News</h4>
|
|
320
|
-
<ul>
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
<li class="">
|
|
344
|
-
<a href="/news/2016/08/24/jekyll-admin-initial-release/">Jekyll Admin Initial Release</a>
|
|
345
|
-
</li>
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
<li class="">
|
|
354
|
-
<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>
|
|
355
|
-
</li>
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
<li class="">
|
|
372
|
-
<a href="/news/2016/03/10/making-it-easier-to-contribute-to-jekyll/">Making it easier to contribute to Jekyll</a>
|
|
373
|
-
</li>
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
<li class="">
|
|
392
|
-
<a href="/news/2015/02/26/introducing-jekyll-talk/">Join the Discussion at Jekyll Talk</a>
|
|
393
|
-
</li>
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
<li class="">
|
|
400
|
-
<a href="/news/2015/01/20/jekyll-meet-and-greet/">Jekyll Meet & Greet at GitHub HQ</a>
|
|
401
|
-
</li>
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
<li class="">
|
|
408
|
-
<a href="/news/2014/12/17/alfredxing-welcome-to-jekyll-core/">Alfred Xing has joined the Jekyll core team</a>
|
|
409
|
-
</li>
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
<li class="">
|
|
430
|
-
<a href="/news/2014/06/04/jekyll-stickers-1-dollar-stickermule/">Pick Up your $1 Jekyll Sticker</a>
|
|
431
|
-
</li>
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
</ul>
|
|
477
|
-
</aside>
|
|
478
|
-
</div>
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
<div class="clear"></div>
|
|
482
|
-
|
|
483
|
-
</div>
|
|
484
|
-
</section>
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
<footer>
|
|
488
|
-
<div class="grid">
|
|
489
|
-
<div class="unit one-third center-on-mobiles">
|
|
490
|
-
<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>
|
|
491
|
-
</div>
|
|
492
|
-
<div class="unit two-thirds align-right center-on-mobiles">
|
|
493
|
-
<p>
|
|
494
|
-
Proudly hosted by
|
|
495
|
-
<a href="https://github.com">
|
|
496
|
-
<img src="/img/footer-logo.png" width="100" height="30" alt="GitHub • Social coding">
|
|
497
|
-
</a>
|
|
498
|
-
</p>
|
|
499
|
-
</div>
|
|
500
|
-
</div>
|
|
501
|
-
</footer>
|
|
502
|
-
|
|
503
|
-
<script>
|
|
504
|
-
var anchorForId = function (id) {
|
|
505
|
-
var anchor = document.createElement("a");
|
|
506
|
-
anchor.className = "header-link";
|
|
507
|
-
anchor.href = "#" + id;
|
|
508
|
-
anchor.innerHTML = "<span class=\"sr-only\">Permalink</span><i class=\"fa fa-link\"></i>";
|
|
509
|
-
anchor.title = "Permalink";
|
|
510
|
-
return anchor;
|
|
511
|
-
};
|
|
512
|
-
|
|
513
|
-
var linkifyAnchors = function (level, containingElement) {
|
|
514
|
-
var headers = containingElement.getElementsByTagName("h" + level);
|
|
515
|
-
for (var h = 0; h < headers.length; h++) {
|
|
516
|
-
var header = headers[h];
|
|
517
|
-
|
|
518
|
-
if (typeof header.id !== "undefined" && header.id !== "") {
|
|
519
|
-
header.appendChild(anchorForId(header.id));
|
|
520
|
-
}
|
|
521
|
-
}
|
|
522
|
-
};
|
|
523
|
-
|
|
524
|
-
document.onreadystatechange = function () {
|
|
525
|
-
if (this.readyState === "complete") {
|
|
526
|
-
var contentBlock = document.getElementsByClassName("docs")[0] || document.getElementsByClassName("news")[0];
|
|
527
|
-
if (!contentBlock) {
|
|
528
|
-
return;
|
|
529
|
-
}
|
|
530
|
-
for (var level = 1; level <= 6; level++) {
|
|
531
|
-
linkifyAnchors(level, contentBlock);
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
};
|
|
535
|
-
</script>
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
<!-- Gauges (http://get.gaug.es/) -->
|
|
539
|
-
<script>
|
|
540
|
-
var _gauges = _gauges || [];
|
|
541
|
-
(function() {
|
|
542
|
-
var t = document.createElement('script');
|
|
543
|
-
t.type = 'text/javascript';
|
|
544
|
-
t.async = true;
|
|
545
|
-
t.id = 'gauges-tracker';
|
|
546
|
-
t.setAttribute('data-site-id', '503c5af6613f5d0f19000027');
|
|
547
|
-
t.src = '//secure.gaug.es/track.js';
|
|
548
|
-
var s = document.getElementsByTagName('script')[0];
|
|
549
|
-
s.parentNode.insertBefore(t, s);
|
|
550
|
-
})();
|
|
551
|
-
</script>
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
<!-- Google Analytics (https://www.google.com/analytics) -->
|
|
556
|
-
<script>
|
|
557
|
-
!function(j,e,k,y,l,L){j.GoogleAnalyticsObject=y,j[y]||(j[y]=function(){
|
|
558
|
-
(j[y].q=j[y].q||[]).push(arguments)}),j[y].l=+new Date,l=e.createElement(k),
|
|
559
|
-
L=e.getElementsByTagName(k)[0],l.src='//www.google-analytics.com/analytics.js',
|
|
560
|
-
L.parentNode.insertBefore(l,L)}(window,document,'script','ga');
|
|
561
|
-
|
|
562
|
-
ga('create', 'UA-50755011-1', 'jekyllrb.com');
|
|
563
|
-
ga('send', 'pageview');
|
|
564
|
-
|
|
565
|
-
</script>
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
</body>
|
|
570
|
-
</html>
|