monad 0.0.2 → 0.0.3
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 +7 -0
- data/CONTRIBUTING.markdown +91 -0
- data/Gemfile +1 -1
- data/History.markdown +772 -0
- data/{README.md → README.markdown} +5 -2
- data/Rakefile +163 -1
- data/bin/monad +86 -30
- data/features/create_sites.feature +54 -25
- data/features/data.feature +65 -0
- data/features/data_sources.feature +10 -10
- data/features/drafts.feature +5 -5
- data/features/embed_filters.feature +10 -10
- data/features/include_tag.feature +48 -0
- data/features/markdown.feature +5 -5
- data/features/pagination.feature +38 -10
- data/features/permalinks.feature +31 -11
- data/features/post_data.feature +41 -41
- data/features/post_excerpts.feature +50 -0
- data/features/site_configuration.feature +47 -26
- data/features/site_data.feature +30 -24
- data/features/step_definitions/{monad_steps.rb → jekyll_steps.rb} +66 -52
- data/features/support/env.rb +27 -8
- data/lib/jekyll.rb +99 -0
- data/lib/jekyll/cleaner.rb +73 -0
- data/lib/{monad → jekyll}/command.rb +6 -6
- data/lib/{monad → jekyll}/commands/build.rb +9 -9
- data/lib/jekyll/commands/doctor.rb +67 -0
- data/lib/jekyll/commands/new.rb +67 -0
- data/lib/jekyll/commands/serve.rb +65 -0
- data/lib/{monad → jekyll}/configuration.rb +60 -18
- data/lib/{monad → jekyll}/converter.rb +1 -1
- data/lib/{monad → jekyll}/converters/identity.rb +1 -1
- data/lib/{monad → jekyll}/converters/markdown.rb +2 -2
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +29 -0
- data/lib/{monad → jekyll}/converters/markdown/maruku_parser.rb +12 -8
- data/lib/{monad → jekyll}/converters/markdown/rdiscount_parser.rb +4 -2
- data/lib/{monad → jekyll}/converters/markdown/redcarpet_parser.rb +1 -1
- data/lib/{monad → jekyll}/converters/textile.rb +1 -1
- data/lib/{monad → jekyll}/convertible.rb +39 -17
- data/lib/{monad → jekyll}/core_ext.rb +22 -4
- data/lib/jekyll/deprecator.rb +36 -0
- data/lib/{monad → jekyll}/draft.rb +1 -1
- data/lib/{monad → jekyll}/drivers/json_driver.rb +1 -1
- data/lib/{monad → jekyll}/drivers/yaml_driver.rb +1 -1
- data/lib/{monad → jekyll}/errors.rb +1 -1
- data/lib/jekyll/excerpt.rb +113 -0
- data/lib/{monad → jekyll}/filters.rb +16 -6
- data/lib/{monad → jekyll}/generator.rb +1 -1
- data/lib/jekyll/generators/pagination.rb +214 -0
- data/lib/{monad → jekyll}/layout.rb +4 -1
- data/lib/{monad → jekyll}/mime.types +0 -0
- data/lib/{monad → jekyll}/page.rb +36 -39
- data/lib/{monad → jekyll}/plugin.rb +1 -1
- data/lib/{monad → jekyll}/post.rb +58 -123
- data/lib/jekyll/related_posts.rb +59 -0
- data/lib/{monad → jekyll}/site.rb +120 -123
- data/lib/{monad → jekyll}/static_file.rb +1 -1
- data/lib/jekyll/stevenson.rb +89 -0
- data/lib/jekyll/tags/gist.rb +48 -0
- data/lib/{monad → jekyll}/tags/highlight.rb +3 -3
- data/lib/jekyll/tags/include.rb +135 -0
- data/lib/{monad → jekyll}/tags/post_url.rb +8 -6
- data/lib/jekyll/url.rb +67 -0
- data/lib/monad.rb +36 -27
- data/lib/site_template/_config.yml +2 -1
- data/lib/site_template/_layouts/default.html +21 -23
- data/lib/site_template/_layouts/post.html +1 -1
- data/lib/site_template/_posts/{0000-00-00-welcome-to-monad.markdown.erb → 0000-00-00-welcome-to-jekyll.markdown.erb} +6 -6
- data/lib/site_template/css/main.css +22 -27
- data/lib/site_template/index.html +2 -2
- data/monad.gemspec +153 -52
- data/site/.gitignore +4 -0
- data/site/CNAME +1 -0
- data/site/README +1 -0
- data/site/_config.yml +6 -0
- data/site/_includes/analytics.html +32 -0
- data/site/_includes/docs_contents.html +16 -0
- data/site/_includes/docs_contents_mobile.html +23 -0
- data/site/_includes/docs_option.html +11 -0
- data/site/_includes/docs_ul.html +20 -0
- data/site/_includes/footer.html +15 -0
- data/site/_includes/header.html +18 -0
- data/site/_includes/news_contents.html +23 -0
- data/site/_includes/news_contents_mobile.html +11 -0
- data/site/_includes/news_item.html +24 -0
- data/site/_includes/primary-nav-items.html +14 -0
- data/site/_includes/section_nav.html +22 -0
- data/site/_includes/top.html +17 -0
- data/site/_layouts/default.html +12 -0
- data/site/_layouts/docs.html +23 -0
- data/site/_layouts/news.html +19 -0
- data/site/_layouts/news_item.html +27 -0
- data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +23 -0
- data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +27 -0
- data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +28 -0
- data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +25 -0
- data/site/_posts/2013-07-14-jekyll-1-1-0-released.markdown +27 -0
- data/site/_posts/2013-07-24-jekyll-1-1-1-released.markdown +31 -0
- data/site/_posts/2013-07-25-jekyll-1-0-4-released.markdown +20 -0
- data/site/_posts/2013-07-25-jekyll-1-1-2-released.markdown +20 -0
- data/site/_posts/2013-09-06-jekyll-1-2-0-released.markdown +23 -0
- data/site/_posts/2013-09-14-jekyll-1-2-1-released.markdown +19 -0
- data/site/css/gridism.css +110 -0
- data/site/css/normalize.css +1 -0
- data/site/css/pygments.css +70 -0
- data/site/css/style.css +946 -0
- data/site/docs/configuration.md +373 -0
- data/site/docs/contributing.md +128 -0
- data/site/docs/datafiles.md +63 -0
- data/site/docs/deployment-methods.md +109 -0
- data/site/docs/drafts.md +20 -0
- data/site/docs/extras.md +56 -0
- data/site/docs/frontmatter.md +180 -0
- data/site/docs/github-pages.md +91 -0
- data/site/docs/heroku.md +9 -0
- data/site/docs/history.md +722 -0
- data/site/docs/index.md +52 -0
- data/site/docs/installation.md +76 -0
- data/site/docs/migrations.md +257 -0
- data/site/docs/pages.md +86 -0
- data/site/docs/pagination.md +211 -0
- data/site/docs/permalinks.md +180 -0
- data/site/docs/plugins.md +508 -0
- data/site/docs/posts.md +181 -0
- data/site/docs/quickstart.md +32 -0
- data/site/docs/resources.md +46 -0
- data/site/docs/sites.md +29 -0
- data/site/docs/structure.md +190 -0
- data/site/docs/templates.md +319 -0
- data/site/docs/troubleshooting.md +150 -0
- data/site/docs/upgrading.md +146 -0
- data/site/docs/usage.md +63 -0
- data/site/docs/variables.md +322 -0
- data/site/favicon.png +0 -0
- data/site/feed.xml +36 -0
- data/site/freenode.txt +1 -0
- 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/logo-2x.png +0 -0
- data/site/img/octojekyll.png +0 -0
- data/site/img/tube.png +0 -0
- data/site/img/tube1x.png +0 -0
- data/site/index.html +90 -0
- data/site/js/modernizr-2.5.3.min.js +4 -0
- data/site/news/index.html +10 -0
- data/site/news/releases/index.html +10 -0
- data/test/helper.rb +6 -3
- data/test/source/+/foo.md +7 -0
- data/test/source/_data/languages.yml +2 -0
- data/test/source/_data/members.yaml +7 -0
- data/test/source/_data/products.yml +4 -0
- data/test/source/_includes/params.html +7 -0
- data/test/source/_layouts/default.html +1 -1
- data/test/source/_layouts/post/simple.html +1 -0
- data/test/source/_plugins/dummy.rb +1 -1
- data/test/source/_posts/2013-01-02-post-excerpt.markdown +1 -1
- data/test/source/_posts/2013-07-22-post-excerpt-with-layout.markdown +23 -0
- data/test/source/_posts/2013-08-01-mkdn-extension.mkdn +0 -0
- data/test/source/deal.with.dots.html +1 -1
- data/test/source/products.yml +4 -0
- data/test/test_configuration.rb +46 -11
- data/test/test_convertible.rb +2 -2
- data/test/test_excerpt.rb +78 -0
- data/test/test_filters.rb +4 -4
- data/test/test_generated_site.rb +13 -13
- data/test/test_json_driver.rb +9 -9
- data/test/test_kramdown.rb +32 -5
- data/test/test_new_command.rb +8 -8
- data/test/test_page.rb +12 -3
- data/test/test_pager.rb +34 -33
- data/test/test_post.rb +34 -26
- data/test/test_redcloth.rb +3 -3
- data/test/test_related_posts.rb +47 -0
- data/test/test_site.rb +102 -44
- data/test/test_tags.rb +168 -23
- data/test/test_url.rb +28 -0
- data/test/test_yaml_driver.rb +6 -6
- metadata +215 -137
- data/lib/monad/commands/doctor.rb +0 -29
- data/lib/monad/commands/new.rb +0 -50
- data/lib/monad/commands/serve.rb +0 -33
- data/lib/monad/converters/markdown/kramdown_parser.rb +0 -44
- data/lib/monad/deprecator.rb +0 -32
- data/lib/monad/generators/pagination.rb +0 -143
- data/lib/monad/logger.rb +0 -54
- data/lib/monad/tags/gist.rb +0 -30
- data/lib/monad/tags/include.rb +0 -37
data/site/.gitignore
ADDED
data/site/CNAME
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jekyllrb.com
|
data/site/README
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Jekyll's awesome website.
|
data/site/_config.yml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{% if site.gauges_id %}
|
|
2
|
+
<!-- Gauges (http://gaug.es/) -->
|
|
3
|
+
<script type="text/javascript">
|
|
4
|
+
var _gauges = _gauges || [];
|
|
5
|
+
(function() {
|
|
6
|
+
var t = document.createElement('script');
|
|
7
|
+
t.type = 'text/javascript';
|
|
8
|
+
t.async = true;
|
|
9
|
+
t.id = 'gauges-tracker';
|
|
10
|
+
t.setAttribute('data-site-id', '{{ site.gauges_id }}');
|
|
11
|
+
t.src = '//secure.gaug.es/track.js';
|
|
12
|
+
var s = document.getElementsByTagName('script')[0];
|
|
13
|
+
s.parentNode.insertBefore(t, s);
|
|
14
|
+
})();
|
|
15
|
+
</script>
|
|
16
|
+
{% endif %}
|
|
17
|
+
|
|
18
|
+
{% if site.google_analytics_id %}
|
|
19
|
+
<!-- Google Analytics (http://google.com/analytics) -->
|
|
20
|
+
<script type="text/javascript">
|
|
21
|
+
var _gaq = _gaq || [];
|
|
22
|
+
_gaq.push(['_setAccount', '{{ site.google_analytics_id }}']);
|
|
23
|
+
_gaq.push(['_setDomainName', '{{ site.url }}']); // Multiple sub-domains
|
|
24
|
+
_gaq.push(['_setAllowLinker', true]); // Multiple TLDs
|
|
25
|
+
_gaq.push(['_trackPageview']);
|
|
26
|
+
(function() {
|
|
27
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
28
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
29
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
30
|
+
})();
|
|
31
|
+
</script>
|
|
32
|
+
{% endif %}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<div class="unit one-fifth hide-on-mobiles">
|
|
2
|
+
<aside>
|
|
3
|
+
<h4>Getting Started</h4>
|
|
4
|
+
{% include docs_ul.html items='home quickstart installation usage structure configuration' %}
|
|
5
|
+
<h4>Your Content</h4>
|
|
6
|
+
{% include docs_ul.html items='frontmatter posts drafts pages variables datafiles migrations' %}
|
|
7
|
+
<h4>Customization</h4>
|
|
8
|
+
{% include docs_ul.html items='templates permalinks pagination plugins extras' %}
|
|
9
|
+
<h4>Deployment</h4>
|
|
10
|
+
{% include docs_ul.html items='github-pages deployment-methods' %}
|
|
11
|
+
<h4>Miscellaneous</h4>
|
|
12
|
+
{% include docs_ul.html items='troubleshooting sites resources upgrading' %}
|
|
13
|
+
<h4>Meta</h4>
|
|
14
|
+
{% include docs_ul.html items='contributing history' %}
|
|
15
|
+
</aside>
|
|
16
|
+
</div>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
|
2
|
+
<select onchange="if (this.value) window.location.href=this.value">
|
|
3
|
+
<option value="">Navigate the docs…</option>
|
|
4
|
+
<optgroup label="Getting started">
|
|
5
|
+
{% include docs_option.html items='home quickstart installation usage structure configuration' %}
|
|
6
|
+
</optgroup>
|
|
7
|
+
<optgroup label="Your Content">
|
|
8
|
+
{% include docs_option.html items='frontmatter posts drafts pages variables datafiles migrations' %}
|
|
9
|
+
</optgroup>
|
|
10
|
+
<optgroup label="Customization">
|
|
11
|
+
{% include docs_option.html items='templates permalinks pagination plugins extras' %}
|
|
12
|
+
</optgroup>
|
|
13
|
+
<optgroup label="Deployment">
|
|
14
|
+
{% include docs_option.html items='github-pages deployment-methods' %}
|
|
15
|
+
</optgroup>
|
|
16
|
+
<optgroup label="Miscellaneous">
|
|
17
|
+
{% include docs_option.html items='troubleshooting sites resources upgrading' %}
|
|
18
|
+
</optgroup>
|
|
19
|
+
<optgroup label="Meta">
|
|
20
|
+
{% include docs_option.html items='contributing history' %}
|
|
21
|
+
</optgroup>
|
|
22
|
+
</select>
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{% assign items = include.items | split: ' ' %}
|
|
2
|
+
|
|
3
|
+
{% for item in items %}
|
|
4
|
+
{% assign item_url = item | prepend:'/docs/' | append:'/' %}
|
|
5
|
+
|
|
6
|
+
{% for p in site.pages %}
|
|
7
|
+
{% if p.url == item_url %}
|
|
8
|
+
<option value="{{ site.url }}{{ p.url }}">{{ p.title }}</option>
|
|
9
|
+
{% endif %}
|
|
10
|
+
{% endfor %}
|
|
11
|
+
{% endfor %}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{% assign items = include.items | split: ' ' %}
|
|
2
|
+
|
|
3
|
+
<ul>
|
|
4
|
+
{% for item in items %}
|
|
5
|
+
{% assign item_url = item | prepend:'/docs/' | append:'/' %}
|
|
6
|
+
|
|
7
|
+
{% if item_url == page.url %}
|
|
8
|
+
{% assign c = 'current' %}
|
|
9
|
+
{% else %}
|
|
10
|
+
{% assign c = '' %}
|
|
11
|
+
{% endif %}
|
|
12
|
+
|
|
13
|
+
{% for p in site.pages %}
|
|
14
|
+
{% if p.url == item_url %}
|
|
15
|
+
<li class="{{ c }}"><a href="{{ site.url }}{{ p.url }}">{{ p.title }}</a></li>
|
|
16
|
+
{% endif %}
|
|
17
|
+
{% endfor %}
|
|
18
|
+
|
|
19
|
+
{% endfor %}
|
|
20
|
+
</ul>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<footer>
|
|
2
|
+
<div class="grid">
|
|
3
|
+
<div class="unit one-third center-on-mobiles">
|
|
4
|
+
<p>By <a href="http://tom.preston-werner.com">Tom Preston-Werner</a>, <a href="http://quaran.to/">Nick Quaranto</a>, and many more <a href="{{ site.repository }}/graphs/contributors">awesome contributors</a>.</p>
|
|
5
|
+
</div>
|
|
6
|
+
<div class="unit two-thirds align-right center-on-mobiles">
|
|
7
|
+
<p>
|
|
8
|
+
Proudly hosted by
|
|
9
|
+
<a href="https://github.com">
|
|
10
|
+
<img src="{{ site.url }}/img/footer-logo.png" alt="GitHub • Social coding">
|
|
11
|
+
</a>
|
|
12
|
+
</p>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
15
|
+
</footer>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<header>
|
|
2
|
+
<nav class="mobile-nav show-on-mobiles">
|
|
3
|
+
{% include primary-nav-items.html %}
|
|
4
|
+
</nav>
|
|
5
|
+
<div class="grid">
|
|
6
|
+
<div class="unit one-third center-on-mobiles">
|
|
7
|
+
<h1>
|
|
8
|
+
<a href="{{ site.url }}/">
|
|
9
|
+
<span>Jekyll</span>
|
|
10
|
+
<img src="{{ site.url }}/img/logo-2x.png" width="249" height="115" alt="">
|
|
11
|
+
</a>
|
|
12
|
+
</h1>
|
|
13
|
+
</div>
|
|
14
|
+
<nav class="main-nav unit two-thirds hide-on-mobiles">
|
|
15
|
+
{% include primary-nav-items.html %}
|
|
16
|
+
</nav>
|
|
17
|
+
</div>
|
|
18
|
+
</header>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<div class="unit one-fifth hide-on-mobiles">
|
|
2
|
+
<aside>
|
|
3
|
+
<ul>
|
|
4
|
+
<li class="{% if page.title == 'News' %}current{% endif %}">
|
|
5
|
+
<a href="/news/">All News</a>
|
|
6
|
+
</li>
|
|
7
|
+
<li class="{% if page.title == 'Releases' %}current{% endif %}">
|
|
8
|
+
<a href="/news/releases/">Jekyll Releases</a>
|
|
9
|
+
</li>
|
|
10
|
+
</ul>
|
|
11
|
+
<h4>Recent Releases</h4>
|
|
12
|
+
<ul>
|
|
13
|
+
{% for post in site.posts limit:5 %}
|
|
14
|
+
<li class="{% if page.title == post.title %}current{% endif %}">
|
|
15
|
+
<a href="{{ post.url }}">Version {{ post.version }}</a>
|
|
16
|
+
</li>
|
|
17
|
+
{% endfor %}
|
|
18
|
+
<li>
|
|
19
|
+
<a href="/docs/history/">History »</a>
|
|
20
|
+
</li>
|
|
21
|
+
</ul>
|
|
22
|
+
</aside>
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<div class="docs-nav-mobile unit whole show-on-mobiles">
|
|
2
|
+
<select onchange="if (this.value) window.location.href=this.value">
|
|
3
|
+
<option value="">Navigate the blog…</option>
|
|
4
|
+
<option value="/news/">Home</option>
|
|
5
|
+
<optgroup label="v1.x">
|
|
6
|
+
{% for post in site.posts %}
|
|
7
|
+
<option value="{{ post.url }}">{{ post.title }}</option>
|
|
8
|
+
{% endfor %}
|
|
9
|
+
</optgroup>
|
|
10
|
+
</select>
|
|
11
|
+
</div>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<article>
|
|
2
|
+
<h2>
|
|
3
|
+
<a href="{{ post.url }}">
|
|
4
|
+
{{ post.title }}
|
|
5
|
+
</a>
|
|
6
|
+
</h2>
|
|
7
|
+
<span class="post-category">
|
|
8
|
+
{% for category in post.categories %}
|
|
9
|
+
<span class="label">{{ category }}</span>
|
|
10
|
+
{% endfor %}
|
|
11
|
+
</span>
|
|
12
|
+
<div class="post-meta">
|
|
13
|
+
<span class="post-date">
|
|
14
|
+
{{ post.date | date_to_string }}
|
|
15
|
+
</span>
|
|
16
|
+
<a href="https://github.com/{{ post.author }}" class="post-author">
|
|
17
|
+
<img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }}"/>
|
|
18
|
+
{{ post.author }}
|
|
19
|
+
</a>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="post-content">
|
|
22
|
+
{{ post.content }}
|
|
23
|
+
</div>
|
|
24
|
+
</article>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<ul>
|
|
2
|
+
<li class="{% if page.overview %}current{% endif %}">
|
|
3
|
+
<a href="{{ site.url }}/">Overview</a>
|
|
4
|
+
</li>
|
|
5
|
+
<li class="{% if page.url contains '/docs/' %}current{% endif %}">
|
|
6
|
+
<a href="{{ site.url }}/docs/home/">Doc<span class="show-on-mobiles">s</span><span class="hide-on-mobiles">umentation</span></a>
|
|
7
|
+
</li>
|
|
8
|
+
<li class="{% if page.author %}current{% endif %}">
|
|
9
|
+
<a href="{{ site.url }}/news/">News</a>
|
|
10
|
+
</li>
|
|
11
|
+
<li class="">
|
|
12
|
+
<a href="{{ site.repository }}"><span class="hide-on-mobiles">View on </span>GitHub</a>
|
|
13
|
+
</li>
|
|
14
|
+
</ul>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="section-nav">
|
|
2
|
+
<div class="left align-right">
|
|
3
|
+
{% if page.prev_section != null %}
|
|
4
|
+
<a href="{{ site.url }}/docs/{{ page.prev_section }}/" class="prev">
|
|
5
|
+
Back
|
|
6
|
+
</a>
|
|
7
|
+
{% else %}
|
|
8
|
+
<span class="prev disabled">Back</span>
|
|
9
|
+
{% endif %}
|
|
10
|
+
</div>
|
|
11
|
+
<div class="right align-left">
|
|
12
|
+
{% if page.next_section != null %}
|
|
13
|
+
<a href="{{ site.url }}/docs/{{ page.next_section }}/" class="next">
|
|
14
|
+
Next
|
|
15
|
+
</a>
|
|
16
|
+
{% else %}
|
|
17
|
+
<span class="next disabled">Next</span>
|
|
18
|
+
{% endif %}
|
|
19
|
+
</div>
|
|
20
|
+
<div class="clear"></div>
|
|
21
|
+
</div>
|
|
22
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!DOCTYPE HTML>
|
|
2
|
+
<html lang="en-US">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<title>{{ page.title }}</title>
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
7
|
+
<link rel="alternate" type="application/rss+xml" title="Jekyll • Simple, blog-aware, static sites - Feed" href="/feed.xml" />
|
|
8
|
+
<link rel="alternate" type="application/atom+xml" title="Recent commits to Jekyll’s master branch" href="{{ site.repository }}/commits/master.atom" />
|
|
9
|
+
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
|
|
10
|
+
<link href='http://fonts.googleapis.com/css?family=Arizonia' rel='stylesheet' type='text/css'>
|
|
11
|
+
<link rel="stylesheet" href="{{ site.url }}/css/normalize.css" />
|
|
12
|
+
<link rel="stylesheet" href="{{ site.url }}/css/gridism.css" />
|
|
13
|
+
<link rel="stylesheet" href="{{ site.url }}/css/style.css" />
|
|
14
|
+
<link rel="stylesheet" href="{{ site.url }}/css/pygments.css" />
|
|
15
|
+
<link rel="icon" type="image/x-icon" href="{{ site.url }}/favicon.png" />
|
|
16
|
+
<script src="{{ site.url }}/js/modernizr-2.5.3.min.js"></script>
|
|
17
|
+
</head>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<section class="docs">
|
|
6
|
+
<div class="grid">
|
|
7
|
+
|
|
8
|
+
{% include docs_contents_mobile.html %}
|
|
9
|
+
|
|
10
|
+
<div class="unit four-fifths">
|
|
11
|
+
<article>
|
|
12
|
+
<h1>{{ page.title }}</h1>
|
|
13
|
+
{{ content }}
|
|
14
|
+
{% include section_nav.html %}
|
|
15
|
+
</article>
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
{% include docs_contents.html %}
|
|
19
|
+
|
|
20
|
+
<div class="clear"></div>
|
|
21
|
+
|
|
22
|
+
</div>
|
|
23
|
+
</section>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<section class="news">
|
|
6
|
+
<div class="grid">
|
|
7
|
+
|
|
8
|
+
{% include news_contents_mobile.html %}
|
|
9
|
+
|
|
10
|
+
<div class="unit four-fifths">
|
|
11
|
+
{{ content }}
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
{% include news_contents.html %}
|
|
15
|
+
|
|
16
|
+
<div class="clear"></div>
|
|
17
|
+
|
|
18
|
+
</div>
|
|
19
|
+
</section>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: news
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<article>
|
|
6
|
+
<h2>
|
|
7
|
+
{{ page.title }}
|
|
8
|
+
<a href="{{ page.url }}" class="permalink" title="Permalink">∞</a>
|
|
9
|
+
</h2>
|
|
10
|
+
<span class="post-category">
|
|
11
|
+
{% for category in page.categories %}
|
|
12
|
+
<span class="label">{{ category }}</span>
|
|
13
|
+
{% endfor %}
|
|
14
|
+
</span>
|
|
15
|
+
<div class="post-meta">
|
|
16
|
+
<span class="post-date">
|
|
17
|
+
{{ page.date | date_to_string }}
|
|
18
|
+
</span>
|
|
19
|
+
<a href="https://github.com/{{ page.author }}" class="post-author">
|
|
20
|
+
<img src="https://github.com/{{ page.author }}.png" class="avatar" />
|
|
21
|
+
{{ page.author }}
|
|
22
|
+
</a>
|
|
23
|
+
</div>
|
|
24
|
+
<p class="post-content">
|
|
25
|
+
{{ content }}
|
|
26
|
+
</p>
|
|
27
|
+
</article>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: news_item
|
|
3
|
+
title: "Jekyll 1.0.0 Released"
|
|
4
|
+
date: "2013-05-06 02:12:52 +0200"
|
|
5
|
+
author: parkr
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
categories: [release]
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Hey! After many months of hard work by Jekyll's contributors, we're excited
|
|
11
|
+
to announce the first major release of the project in a long while. v1.0.0 is
|
|
12
|
+
finally here! While the list of improvements and bug fixes is [quite lengthy][history],
|
|
13
|
+
here are the highlights (thanks to [@benbalter](http://twitter.com/BenBalter) for the
|
|
14
|
+
examples and for compiling this list):
|
|
15
|
+
|
|
16
|
+
- Support for the Gist tag for easily embedding Gists ([example](https://gist.github.com/benbalter/5555251))
|
|
17
|
+
- Automatically generated post excerpts ([example](https://gist.github.com/benbalter/5555369))
|
|
18
|
+
- Save and preview drafts before publishing ([example](https://gist.github.com/benbalter/5555992))
|
|
19
|
+
|
|
20
|
+
Take a look at the [Upgrading][] page in the docs for more detailed information.
|
|
21
|
+
|
|
22
|
+
[history]: /docs/history/#100__20130506
|
|
23
|
+
[Upgrading]: /docs/upgrading/
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: news_item
|
|
3
|
+
title: "Jekyll 1.0.1 Released"
|
|
4
|
+
date: "2013-05-08 23:46:11 +0200"
|
|
5
|
+
author: parkr
|
|
6
|
+
version: 1.0.1
|
|
7
|
+
categories: [release]
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Hot on the trails of v1.0, v1.0.1 is out! Here are the highlights:
|
|
11
|
+
|
|
12
|
+
* Add newer `language-` class name prefix to code blocks ([#1037][])
|
|
13
|
+
* Commander error message now preferred over process abort with incorrect args ([#1040][])
|
|
14
|
+
* Do not force use of toc_token when using generate_toc in RDiscount ([#1048][])
|
|
15
|
+
* Make Redcarpet respect the pygments configuration option ([#1053][])
|
|
16
|
+
* Fix the index build with LSI ([#1045][])
|
|
17
|
+
* Don't print deprecation warning when no arguments are specified. ([#1041][])
|
|
18
|
+
* Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032][])
|
|
19
|
+
|
|
20
|
+
See the [History][] page for more information on this release.
|
|
21
|
+
|
|
22
|
+
{% assign issue_numbers = "1037|1040|1048|1053|1045|1041|1032" | split: "|" %}
|
|
23
|
+
{% for issue in issue_numbers %}
|
|
24
|
+
[#{{ issue }}]: {{ site.repository }}/issues/{{ issue }}
|
|
25
|
+
{% endfor %}
|
|
26
|
+
|
|
27
|
+
[History]: /docs/history/#101__20130508
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: news_item
|
|
3
|
+
title: "Jekyll 1.0.2 Released"
|
|
4
|
+
date: "2013-05-12 14:45:00 +0200"
|
|
5
|
+
author: parkr
|
|
6
|
+
version: 1.0.2
|
|
7
|
+
categories: [release]
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
v1.0.2 has some key bugfixes that optionally restore some behaviour from pre-1.0
|
|
11
|
+
releases, and fix some other annoying bugs:
|
|
12
|
+
|
|
13
|
+
* Backwards-compatibilize relative permalinks ([#1081][])
|
|
14
|
+
* Add `jekyll doctor` command to check site for any known compatibility problems ([#1081][])
|
|
15
|
+
* Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084][])
|
|
16
|
+
* Update pygments.rb and kramdon versions to 0.5.0 and 1.0.2, respectively ([#1061][], [#1067][])
|
|
17
|
+
* Fix issue when post categories are numbers ([#1078][])
|
|
18
|
+
* Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066][])
|
|
19
|
+
* Catching that Redcarpet gem isn't installed ([#1059][])
|
|
20
|
+
|
|
21
|
+
See the [History][] page for more information on this release.
|
|
22
|
+
|
|
23
|
+
{% assign issue_numbers = "1059|1061|1066|1067|1078|1081|1084" | split: "|" %}
|
|
24
|
+
{% for issue in issue_numbers %}
|
|
25
|
+
[#{{ issue }}]: {{ site.repository }}/issues/{{ issue }}
|
|
26
|
+
{% endfor %}
|
|
27
|
+
|
|
28
|
+
[History]: /docs/history/#102__20130512
|