Note that this change will affect both the source and output directories. For example, if you set the value to assets
,
all files from assets
will be copied to _site/assets
. If the setting starts with an underscore, that will be removed
from the output directory, so files in _assets
will be copied to _site/assets
.
diff --git a/master/dev-docs/autodiscovery.html b/master/dev-docs/autodiscovery.html
index 6897be390e5..203efd7fd5d 100644
--- a/master/dev-docs/autodiscovery.html
+++ b/master/dev-docs/autodiscovery.html
@@ -382,7 +382,7 @@ Now that we know the role of the HydeKernel, let's take a look at its lifecycle. The kernel is "lazy-booted", meaning
-that the all the heavy lifting only happens when you actually need it. Once booted, the kernel data will stay in memory
+that all the heavy lifting only happens when you actually need it. Once booted, the kernel data will stay in memory
until the console application is terminated.
The kernel data is primarily stored in three collections that get generated during the kernel's boot process.
Let's take a look at a simplified version of the kernel's boot method to see how this works.
diff --git a/master/dev-docs/automatic-routing.html b/master/dev-docs/automatic-routing.html
index 96e8f3bfd48..f8c2fbd6683 100644
--- a/master/dev-docs/automatic-routing.html
+++ b/master/dev-docs/automatic-routing.html
@@ -346,7 +346,7 @@ But where it really shines is when you supply a route. This will then resolve the proper relative link, and format it to use pretty URLs if your site is configured to use them.
diff --git a/master/dev-docs/blog-posts.html b/master/dev-docs/blog-posts.html
index 02fb1c3841e..32aad88cac2 100644
--- a/master/dev-docs/blog-posts.html
+++ b/master/dev-docs/blog-posts.html
@@ -373,7 +373,7 @@
Introduction to Hyde Posts#
Making blog posts with Hyde is easy. At the most basic level, all you need is to add a Markdown file to your _posts
folder.
-To use the full power of the Hyde post module however, you'll want to add YAML Front Matter to your posts.
+To use the full power of the Hyde post module you'll want to add YAML Front Matter to your posts.
You can interactively scaffold posts with automatic front matter using the HydeCLI:
php hyde make:post
@@ -402,7 +402,7 @@ Front MatterFront Matter documentation.
Blog Post Example#
-
Before digging in deeper on all the supported options, let's take a look at what a basic post with front matter looks like.
+Before digging deeper into all the supported options, let's take a look at what a basic post with front matter looks like.
Filepath: _posts/my-new-post.md---
title: My New Post
description: A short description used in previews and SEO
@@ -462,8 +462,8 @@ Post Front Matter Schema#
@@ -533,7 +533,7 @@
Note the relative path since the blog post is compiled to posts/example.html
-To learn more, check out the chapter in managing assets
+To learn more, check out the managing assets chapter on the topic.