From 3eb08177a0b9df8efa824c69074f476b46528e00 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 30 Dec 2021 12:58:51 +0100 Subject: [PATCH 01/10] Update caption.md add paragraph on difference between , and the `font-weight` property and when to use each --- web/html/tables/caption.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index b57c1509db..0dda4c7e07 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -31,7 +31,7 @@ The HTML ``, or the **Table Caption** element is used to specify a titl Adding a clear and concise description of the table's content within the `` element is useful for helping people decide if they want to read the table or skip over it. -When used, `` element must to be the **first** element within the `` element to be valid, although using CSS it can be moved accordingly. The property `caption-side` can be set to `bottom` to quickly move the caption to the bottom of the table even with it added to the top of the table. +When used, the `
` element must be the **first** element within the `` element to be valid, although using CSS, it can be moved accordingly. The property `caption-side` can be set to `bottom` to quickly move the caption to the bottom of the table even with it is added to the top of the table. Example: @@ -52,7 +52,7 @@ Example:
``` -> 💡 In the example above, the `` element is used to bring importance to the "Name" and "Starting Date" tags. However, it can be replaced with the `style="font-weight:bold;"` CSS property. +> 💡 In the example above, the `` element is used to bring great importance to the "Name" and "Starting Date" tags. However, if you would only like to style these elements bold and not bring importance to them, you should replace it with the `style="font-weight:bold;"` CSS property. On the other hand, if you would only like to bring attention to them without high importance, you can use the `` element. ![table-caption](https://img.enkipro.com/ec2e595bc8ee7beb5d9882c1ae15022e.png) From f048a1f2b0fdf67687482748c6a149240ef40b5b Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 30 Dec 2021 12:59:45 +0100 Subject: [PATCH 02/10] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61394fbf0d..27cdcef0b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,11 @@ Types of change: ### Fixed +## December 30th 2021 + +### Fixed +- [HTML - The Caption Element - Add minor info when to use strong, b and font-weight property to avoid confusion](https://github.com/enkidevs/curriculum/pull/2972) + ## December 29th 2021 ### Fixed From 2b101e8c9c65d3fe510773d0645bbc32a3d5f6d4 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Tue, 4 Jan 2022 12:18:31 +0100 Subject: [PATCH 03/10] Update caption.md make the paragraph less wordy, replace strong with b --- web/html/tables/caption.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index 0dda4c7e07..3012b0291d 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -39,8 +39,8 @@ Example: - - + + @@ -52,7 +52,9 @@ Example:
Employee List
NameStart DateNameStart Date
Jimmy
``` -> 💡 In the example above, the `` element is used to bring great importance to the "Name" and "Starting Date" tags. However, if you would only like to style these elements bold and not bring importance to them, you should replace it with the `style="font-weight:bold;"` CSS property. On the other hand, if you would only like to bring attention to them without high importance, you can use the `` element. +> 💡 In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. + +If you'd like to only style the elements bold without bringing attention to them, you should replace it with the `style="font-weight:bold;"` CSS property. ![table-caption](https://img.enkipro.com/ec2e595bc8ee7beb5d9882c1ae15022e.png) From fc6508b3b58fc0e36e4d3ce622c2a9dfb90df29a Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Tue, 4 Jan 2022 12:19:48 +0100 Subject: [PATCH 04/10] Update caption.md add link to b element --- web/html/tables/caption.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index 3012b0291d..13a238a05f 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -9,6 +9,9 @@ links: - >- [HTML
Element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption){documentation} + - >- + [HTML + Element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b){documentation} practiceQuestion: formats: - fill-in-the-gap From 9da4046ef0696dac122dfc0927f055a718368416 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Wed, 5 Jan 2022 18:36:10 +0100 Subject: [PATCH 05/10] Update caption.md --- web/html/tables/caption.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index 13a238a05f..69979335a0 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -55,9 +55,16 @@ Example:
``` -> 💡 In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. +In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. + +If you'd like to only style the elements bold without bringing attention to them, you should replace it with a `` element, and apply the `style="font-weight:bold;"` CSS property to it: +```html + Name + Start Date +``` + +> 💡 We add the `` element because we cannot directly apply `style="font-weight:bold"` to the `` element. -If you'd like to only style the elements bold without bringing attention to them, you should replace it with the `style="font-weight:bold;"` CSS property. ![table-caption](https://img.enkipro.com/ec2e595bc8ee7beb5d9882c1ae15022e.png) From b037f8e16cd2ed8c17ae4ea49325972a48352499 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Wed, 5 Jan 2022 15:31:46 -0800 Subject: [PATCH 06/10] Update web/html/tables/caption.md Co-authored-by: Nemanja Stojanovic --- web/html/tables/caption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index 69979335a0..d9850ea795 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -57,7 +57,7 @@ Example: In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. -If you'd like to only style the elements bold without bringing attention to them, you should replace it with a `` element, and apply the `style="font-weight:bold;"` CSS property to it: +If you'd like to only style the elements bold without bringing attention to them, you can use a `` element, and apply the `style="font-weight:bold;"` CSS property to it: ```html Name Start Date From da43f5bed66eb1bded66417b4787ee1097838c96 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 6 Jan 2022 00:41:28 +0100 Subject: [PATCH 07/10] Update caption.md --- web/html/tables/caption.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index d9850ea795..5ac73ed66c 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -57,15 +57,12 @@ Example: In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. -If you'd like to only style the elements bold without bringing attention to them, you can use a `` element, and apply the `style="font-weight:bold;"` CSS property to it: +If you'd like to only style the elements bold without bringing attention to them, you can apply the `style="font-weight:bold;"` CSS property to the `` element: ```html - Name - Start Date + Name + Start Date ``` -> 💡 We add the `` element because we cannot directly apply `style="font-weight:bold"` to the `` element. - - ![table-caption](https://img.enkipro.com/ec2e595bc8ee7beb5d9882c1ae15022e.png) [View CodePen](https://codepen.io/enkidevs/pen/OwNXqB) From 85f048c6c8164a8f328e406f76536865e748ab2b Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 6 Jan 2022 01:01:35 +0100 Subject: [PATCH 08/10] Update caption.md --- web/html/tables/caption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/html/tables/caption.md b/web/html/tables/caption.md index 5ac73ed66c..a9ca1ca102 100755 --- a/web/html/tables/caption.md +++ b/web/html/tables/caption.md @@ -57,7 +57,7 @@ Example: In the example above, the `` element is used to bring attention to the "Name" and "Starting Date" tags. -If you'd like to only style the elements bold without bringing attention to them, you can apply the `style="font-weight:bold;"` CSS property to the `` element: +If you'd like to only style the elements bold without bringing attention to them, you can apply the `style="font-weight:bold;"` CSS property: ```html Name Start Date From 976f3fa7a7fb01803b0853c8ab3777aeb6a54364 Mon Sep 17 00:00:00 2001 From: Nemanja Stojanovic Date: Sun, 9 Jan 2022 09:37:40 -0500 Subject: [PATCH 09/10] Update go-packages.md Make the PQ fill-in-the-gap --- go/go-introduction/go-introduction/go-packages.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/go/go-introduction/go-introduction/go-packages.md b/go/go-introduction/go-introduction/go-packages.md index 1b1fb4ac69..abeeed8f6b 100644 --- a/go/go-introduction/go-introduction/go-packages.md +++ b/go/go-introduction/go-introduction/go-packages.md @@ -5,7 +5,6 @@ category: must-know practiceQuestion: formats: - fill-in-the-gap - - type-in-the-gap context: standalone revisionQuestion: formats: @@ -90,9 +89,7 @@ import ( ) ``` -```plain-text ??? -``` - B - A From fccf0e16cad8553b853a3f031e50454eecabb040 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Sun, 9 Jan 2022 20:34:09 +0100 Subject: [PATCH 10/10] Update CHANGELOG.md --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2308f516b8..fd1a992ada 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,11 @@ Types of change: ### Fixed +## January 9th 2022 + +### Changed +- [Go - Go Packages - Remove type in the gap from PQ](https://github.com/enkidevs/curriculum/pull/2986) + ## January 5th 2022 ### Fixed