Skip to content

Commit

Permalink
Textile is only supported through a converter plugin (#7003)
Browse files Browse the repository at this point in the history
Merge pull request 7003
  • Loading branch information
DirtyF authored and jekyllbot committed May 9, 2018
1 parent a59eaff commit e9b507a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/_docs/pagination.md
Expand Up @@ -14,7 +14,7 @@ your `_config.yml` under `plugins`. For Jekyll 2, this is standard.
<div class="note info">
<h5>Pagination only works within HTML files</h5>
<p>
Pagination does not work from within Markdown or Textile files from
Pagination does not work from within Markdown files from
your Jekyll site. Pagination works when called from within the HTML
file, named <code>index.html</code>, which optionally may reside in and
produce pagination from within a subdirectory, via the
Expand Down
5 changes: 3 additions & 2 deletions docs/_docs/structure.md
Expand Up @@ -5,7 +5,8 @@ permalink: /docs/structure/

Jekyll is, at its core, a text transformation engine. The concept behind the
system is this: you give it text written in your favorite markup language, be
that Markdown, Textile, or just plain HTML, and it churns that through a layout
that Markdown, [Textile](https://github.com/jekyll/jekyll-textile-converter)
, or just plain HTML, and it churns that through a layout
or a series of layout files. Throughout that process you can tweak how you want
the site URLs to look, what data gets displayed in the layout, and more. This
is all done through editing text files; the static web site is the final
Expand Down Expand Up @@ -185,7 +186,7 @@ An overview of what each of these does:
<tr>
<td>
<p><code>index.html</code> or <code>index.md</code> and other HTML,
Markdown, Textile files</p>
Markdown files</p>
</td>
<td>
<p>
Expand Down
4 changes: 4 additions & 0 deletions docs/_docs/upgrading/2-to-3.md
Expand Up @@ -44,6 +44,10 @@ For `site.collections.myCollection` in Jekyll 2, you now do:

This is a bit cumbersome at first, but is easier than a big `for` loop.

### Textile support

We dropped native support for Textile, from now on you have to install our [jekyll-textile-converter](https://github.com/jekyll/jekyll-textile-converter) plugin to work with Textile files.

### Dropped dependencies

We dropped a number of dependencies the Core Team felt were optional. As such, in 3.0, they must be explicitly installed and included if you use any of the features. They are:
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Expand Up @@ -21,7 +21,7 @@ <h2>Simple</h2>
</div>
<div class="unit one-third">
<h2>Static</h2>
<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">&amp;</span> CSS go in. Static sites come out ready for deployment.</p>
<p><a href="https://daringfireball.net/projects/markdown/">Markdown</a>, <a href="https://github.com/Shopify/liquid/wiki">Liquid</a>, HTML <span class="amp">&amp;</span> CSS go in. Static sites come out ready for deployment.</p>
<a href="/docs/templates/">Jekyll template guide &rarr;</a>
</div>
<div class="unit one-third">
Expand Down

0 comments on commit e9b507a

Please sign in to comment.