Add a note about character sets
This commit is contained in:
parent
c7b649f792
commit
c7e5c3f8d8
|
@ -43,7 +43,7 @@ file. For example, the following are examples of valid post filenames:
|
||||||
|
|
||||||
### Content Formats
|
### Content Formats
|
||||||
|
|
||||||
All blog post files must begin with [YAML front- matter](../frontmatter/). After
|
All blog post files must begin with [YAML front-matter](../frontmatter/). After
|
||||||
that, it's simply a matter of deciding which format you prefer. Jekyll supports
|
that, it's simply a matter of deciding which format you prefer. Jekyll supports
|
||||||
two popular content markup formats:
|
two popular content markup formats:
|
||||||
[Markdown](http://daringfireball.net/projects/markdown/) and
|
[Markdown](http://daringfireball.net/projects/markdown/) and
|
||||||
|
@ -52,6 +52,18 @@ of marking up different types of content within a post, so you should
|
||||||
familiarize yourself with these formats and decide which one best suits your
|
familiarize yourself with these formats and decide which one best suits your
|
||||||
needs.
|
needs.
|
||||||
|
|
||||||
|
<div class="note info">
|
||||||
|
<h5>Be aware of character sets</h5>
|
||||||
|
<p>
|
||||||
|
Content processors can modify certain characters to make them look nicer.
|
||||||
|
For example, the <code>smart</code> extension in Redcarpet converts standard,
|
||||||
|
ASCII quotation characters to curly, Unicode ones. In order for the browser
|
||||||
|
to display those characters properly, define the charset meta value by
|
||||||
|
including <code><meta charset="utf-8"></code> in the
|
||||||
|
<code><head></code> of your layout.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
## Including images and resources
|
## Including images and resources
|
||||||
|
|
||||||
Chances are, at some point, you'll want to include images, downloads, or other
|
Chances are, at some point, you'll want to include images, downloads, or other
|
||||||
|
|
Loading…
Reference in New Issue