From 76a9a194cfd59edf47418533ef1a4c284e548ceb Mon Sep 17 00:00:00 2001 From: Shruti Dalvi <123170794+ShrutiRDalvi@users.noreply.github.com> Date: Mon, 14 Aug 2023 01:47:58 +0530 Subject: [PATCH] Update 07-assets.md (#9393) Merge pull request 9393 --- docs/_docs/step-by-step/07-assets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/step-by-step/07-assets.md b/docs/_docs/step-by-step/07-assets.md index 4ea8748b..93b6750d 100644 --- a/docs/_docs/step-by-step/07-assets.md +++ b/docs/_docs/step-by-step/07-assets.md @@ -17,14 +17,14 @@ Jekyll sites often use this structure to keep assets organized: ... ``` So, from your assets folder, create folders called css, images and js. -Additionally, directly under the root create another folder called '_sass', which you will need shortly. +Additionally, directly under the root create another folder called `_sass`, which you will need shortly. ## Sass Inlining the styles used in `_includes/navigation.html`(adding or configuring within the same file) is not a best practice. Instead, let's style the current page by defining our first class in a new css file instead. -To do this, refer to the class (that you will configure in the next parts of this step) from within the navigation.html file by removing the code you added earlier (to color the current link red) and inserting the following code: +To do this, refer to the class (that you will configure in the next parts of this step) from within the `navigation.html` file by removing the code you added earlier (to color the current link red) and inserting the following code: {% raw %} ```liquid