From 406270f57841114cf2258132c5fdc44bea03a4e2 Mon Sep 17 00:00:00 2001 From: Leo McArdle Date: Thu, 26 Sep 2024 11:08:57 +0000 Subject: [PATCH] indent scrims to not break up lists --- curriculum/3-core/1-web-standards.md | 2 +- curriculum/3-core/2-semantic-html.md | 2 +- curriculum/3-core/3-css-fundamentals.md | 2 +- curriculum/3-core/5-css-layout.md | 4 ++-- curriculum/3-core/6-javascript-fundamentals.md | 4 ++-- curriculum/3-core/9-version-control.md | 2 +- curriculum/4-extensions/3-web-apis.md | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/curriculum/3-core/1-web-standards.md b/curriculum/3-core/1-web-standards.md index d4ad1d5..3f4d579 100644 --- a/curriculum/3-core/1-web-standards.md +++ b/curriculum/3-core/1-web-standards.md @@ -18,7 +18,7 @@ Learning outcomes: - Clients and servers and their roles in the web. - + - DNS and how it works at a high level. diff --git a/curriculum/3-core/2-semantic-html.md b/curriculum/3-core/2-semantic-html.md index cc2b289..198da15 100644 --- a/curriculum/3-core/2-semantic-html.md +++ b/curriculum/3-core/2-semantic-html.md @@ -228,7 +228,7 @@ Learning outcomes: - Common `` types — `text`, `number`, `file`, `checkbox`, `radio`, `password`, `search`, and `submit`. - + - Common attributes — `name` and `value`. diff --git a/curriculum/3-core/3-css-fundamentals.md b/curriculum/3-core/3-css-fundamentals.md index 127c62f..23d3516 100644 --- a/curriculum/3-core/3-css-fundamentals.md +++ b/curriculum/3-core/3-css-fundamentals.md @@ -68,7 +68,7 @@ Learning outcomes: - You can have multiple classes per element, and these can be used to layer on styles as required. - + - IDs and classes should be used sparingly where they make sense for selections, but you shouldn't use them for everything — keep your HTML as clean and uncluttered as possible. diff --git a/curriculum/3-core/5-css-layout.md b/curriculum/3-core/5-css-layout.md index b5e3e20..1130958 100644 --- a/curriculum/3-core/5-css-layout.md +++ b/curriculum/3-core/5-css-layout.md @@ -60,7 +60,7 @@ Learning outcomes: - Setting the positioning context of a positioned element by positioning an ancestor element. - + - Fixed and sticky positioning: @@ -106,7 +106,7 @@ Learning outcomes: - Adjusting flex item ordering. - + - CSS Grid: diff --git a/curriculum/3-core/6-javascript-fundamentals.md b/curriculum/3-core/6-javascript-fundamentals.md index a63afee..b6c0a7b 100644 --- a/curriculum/3-core/6-javascript-fundamentals.md +++ b/curriculum/3-core/6-javascript-fundamentals.md @@ -110,7 +110,7 @@ Learning outcomes: - Understand what an array is — a structure that holds a list of variables. - + - The syntax of arrays — `[a, b, c]` and the accessor syntax, `myArray[x]`. @@ -182,7 +182,7 @@ Learning outcomes: - Understand the purpose of functions — to enable the creation of reusable blocks of code that can be called wherever needed. - + - Understand that functions are used everywhere in JavaScript and that some are built into the browser and some are user-defined. diff --git a/curriculum/3-core/9-version-control.md b/curriculum/3-core/9-version-control.md index 3dbe3fc..31528fe 100644 --- a/curriculum/3-core/9-version-control.md +++ b/curriculum/3-core/9-version-control.md @@ -19,7 +19,7 @@ Learning outcomes: - Understand the difference between Git, and websites like GitHub and GitLab. - + - Understand that websites such as GitHub and GitLab enable teamwork and collaboration that isn't so easy just with plain Git. diff --git a/curriculum/4-extensions/3-web-apis.md b/curriculum/4-extensions/3-web-apis.md index ee8964b..b38dedd 100644 --- a/curriculum/4-extensions/3-web-apis.md +++ b/curriculum/4-extensions/3-web-apis.md @@ -120,7 +120,7 @@ Learning outcomes: - Using Web Storage for simple key-value pair storage, controlled by JavaScript. - + - Using IndexedDB: