From 4c07f5db44e4d27bfa2623bcaf5a9a7a52a61a0c Mon Sep 17 00:00:00 2001 From: Owen Yaggy Date: Tue, 25 Jul 2023 18:02:32 -0400 Subject: [PATCH 1/2] Update index.md Fixed inconsistency and incomplete sentence in the last section --- src/site/content/en/learn/html/metadata/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/content/en/learn/html/metadata/index.md b/src/site/content/en/learn/html/metadata/index.md index 7d4525016af..2632f9d1b77 100644 --- a/src/site/content/en/learn/html/metadata/index.md +++ b/src/site/content/en/learn/html/metadata/index.md @@ -213,7 +213,7 @@ Your HTML now looks something like this: ``` -It's pretty long, but it's done. It would have been much longer, but you've summed up all the icons, short name, etc. in a [manifest file](/add-manifest/), enabling you to omit many `` and `` tags, +It's pretty long, but it's done. Now that your `` is mostly complete, you can dive into some [semantic HTML](/learn/html/semantic-html/). From 5dd65958108520942202ca77da041c69bf3bf2cb Mon Sep 17 00:00:00 2001 From: Owen Yaggy Date: Tue, 25 Jul 2023 19:17:42 -0400 Subject: [PATCH 2/2] fix typo (GoogleChrome#10286) --- src/site/content/en/learn/html/tables/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/content/en/learn/html/tables/index.md b/src/site/content/en/learn/html/tables/index.md index 418f466cdf4..61fd306dfc7 100644 --- a/src/site/content/en/learn/html/tables/index.md +++ b/src/site/content/en/learn/html/tables/index.md @@ -159,7 +159,7 @@ include the `headers` attribute with a space-separated list of the associated he the scope of the headers with the `scope` attribute. To be even clearer, we added the `headers` attribute to each cell. The `headers` attributes were possibly not necessary in such a simple use case, but they are important to have in your toolbelt -your tables grow in complexity. Tables with complex structures, such as tables where headers or cells are merged or with more +as your tables grow in complexity. Tables with complex structures, such as tables where headers or cells are merged or with more than two levels of column or row headers, require explicit identification of associated header cells. In such complex tables, explicitly associate each data cell with each corresponding header cell with a list of space-separated `id` values of all the associated headers as the value of the `headers` attribute.