Clarify description of `safe` option (#8354)

Merge pull request 8354
This commit is contained in:
Shannon Kularathna 2020-08-27 12:50:17 -04:00 committed by GitHub
parent 4299095d21
commit bc9895aa9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class="flag">flags</code> (specified on the command-line) that control them.
<td> <td>
<p class="name"><strong>Safe</strong></p> <p class="name"><strong>Safe</strong></p>
<p class="description"> <p class="description">
Disable <a href="/docs/plugins/">custom plugins</a>, caching to disk Disable <a href="/docs/plugins/">non-whitelisted plugins</a>, caching to disk,
and ignore symbolic links. and ignore symbolic links.
</p> </p>
</td> </td>

View File

@ -7,6 +7,9 @@ Jekyll has a plugin system with hooks that allow you to create custom generated
content specific to your site. You can run custom code for your site without content specific to your site. You can run custom code for your site without
having to modify the Jekyll source itself. having to modify the Jekyll source itself.
{: .note .info}
You can add specific plugins to the `whitelist` key in `_config.yml` to allow them to run in safe mode.
* [Installation]({{ '/docs/plugins/installation/' | relative_url }}) - How to install plugins * [Installation]({{ '/docs/plugins/installation/' | relative_url }}) - How to install plugins
* [Your first plugin]({{ '/docs/plugins/your-first-plugin/' | relative_url }}) - How to write plugins * [Your first plugin]({{ '/docs/plugins/your-first-plugin/' | relative_url }}) - How to write plugins
* [Generators]({{ '/docs/plugins/generators/' | relative_url }}) - Create additional content on your site * [Generators]({{ '/docs/plugins/generators/' | relative_url }}) - Create additional content on your site