write document for config.encoding
This commit is contained in:
parent
8a28d80690
commit
f4c2383d3c
|
@ -11,10 +11,11 @@ module Jekyll
|
||||||
'plugins' => '_plugins',
|
'plugins' => '_plugins',
|
||||||
'layouts' => '_layouts',
|
'layouts' => '_layouts',
|
||||||
'keep_files' => ['.git','.svn'],
|
'keep_files' => ['.git','.svn'],
|
||||||
'encoding' => nil,
|
|
||||||
|
|
||||||
'timezone' => nil, # use the local timezone
|
'timezone' => nil, # use the local timezone
|
||||||
|
|
||||||
|
'encoding' => nil, # use the system encoding
|
||||||
|
|
||||||
'safe' => false,
|
'safe' => false,
|
||||||
'detach' => false, # default to not detaching the server
|
'detach' => false, # default to not detaching the server
|
||||||
'show_drafts' => nil,
|
'show_drafts' => nil,
|
||||||
|
|
|
@ -99,6 +99,18 @@ class="flag">flags</code> (specified on the command-line) that control them.
|
||||||
<p><code class="option">timezone: TIMEZONE</code></p>
|
<p><code class="option">timezone: TIMEZONE</code></p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class='setting'>
|
||||||
|
<td>
|
||||||
|
<p class='name'><strong>Encoding</strong></p>
|
||||||
|
<p class="description">
|
||||||
|
Set the encoding of files. The default is the system encoding,
|
||||||
|
which determined by LANG environment variable.
|
||||||
|
</p>
|
||||||
|
</td>
|
||||||
|
<td class='align-center'>
|
||||||
|
<p><code class="option">encoding: ENCODING</code></p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -266,6 +278,7 @@ include: ['.htaccess']
|
||||||
exclude: []
|
exclude: []
|
||||||
keep_files: ['.git','.svn']
|
keep_files: ['.git','.svn']
|
||||||
timezone: nil
|
timezone: nil
|
||||||
|
encoding: nil
|
||||||
|
|
||||||
future: true
|
future: true
|
||||||
show_drafts: nil
|
show_drafts: nil
|
||||||
|
|
Loading…
Reference in New Issue