diff --git a/markdownlint/TOP001_descriptiveLinkTextLabels/tests/TOP001_test.md b/markdownlint/TOP001_descriptiveLinkTextLabels/tests/TOP001_test.md index 9f16608ecad..a7dcec4a5f0 100644 --- a/markdownlint/TOP001_descriptiveLinkTextLabels/tests/TOP001_test.md +++ b/markdownlint/TOP001_descriptiveLinkTextLabels/tests/TOP001_test.md @@ -6,7 +6,7 @@ Text content This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### The following links should NOT be flagged diff --git a/markdownlint/TOP002_noCodeInHeadings/tests/TOP002_test.md b/markdownlint/TOP002_noCodeInHeadings/tests/TOP002_test.md index 636da549031..c72d6add8bc 100644 --- a/markdownlint/TOP002_noCodeInHeadings/tests/TOP002_test.md +++ b/markdownlint/TOP002_noCodeInHeadings/tests/TOP002_test.md @@ -6,7 +6,7 @@ Text content. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### This heading should NOT be flagged diff --git a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_content-around-list.md b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_content-around-list.md index 3e0357edf16..e126aac45e8 100644 --- a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_content-around-list.md +++ b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_content-around-list.md @@ -8,7 +8,7 @@ This section contains a general overview of topics that you will learn in this l Some additional content before the list that should flag an error. -- LO item +- LO item. Some additional content after the list that should flag an error. diff --git a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_incorrect-content.md b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_incorrect-content.md index 242782910fa..8cc4c4feebb 100644 --- a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_incorrect-content.md +++ b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_incorrect-content.md @@ -6,7 +6,7 @@ Text content This section has the wrong text following the heading that should flag an error. -- LO item +- LO item. ### Custom section diff --git a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_missing-wrapper.md b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_missing-wrapper.md index cc6812c35a0..411d7c4419c 100644 --- a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_missing-wrapper.md +++ b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_missing-wrapper.md @@ -6,7 +6,7 @@ Text content This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Custom section diff --git a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_nested-and-ordered-list.md b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_nested-and-ordered-list.md index d3533493c24..5fbe3ff29b5 100644 --- a/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_nested-and-ordered-list.md +++ b/markdownlint/TOP003_defaultSectionContent/tests/TOP003_test_nested-and-ordered-list.md @@ -6,9 +6,9 @@ Text content This section contains a general overview of topics that you will learn in this lesson. -- An item - - A nested item that should flag an error -- Unnested list item +- An item. + - A nested item that should flag an error. +- Unnested list item. ### Custom section diff --git a/markdownlint/TOP004_lessonHeadings/tests/TOP004_test_valid.md b/markdownlint/TOP004_lessonHeadings/tests/TOP004_test_valid.md index be2f81ce118..5878ae22dc4 100644 --- a/markdownlint/TOP004_lessonHeadings/tests/TOP004_test_valid.md +++ b/markdownlint/TOP004_lessonHeadings/tests/TOP004_test_valid.md @@ -6,7 +6,7 @@ This file should not be flagged with any errors. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Custom section diff --git a/markdownlint/TOP005_blanksAroundMultilineHtmlTags/tests/TOP005_test.md b/markdownlint/TOP005_blanksAroundMultilineHtmlTags/tests/TOP005_test.md index a5a10fbfebf..b121539cffe 100644 --- a/markdownlint/TOP005_blanksAroundMultilineHtmlTags/tests/TOP005_test.md +++ b/markdownlint/TOP005_blanksAroundMultilineHtmlTags/tests/TOP005_test.md @@ -6,7 +6,7 @@ This file should flag with TOP005 errors, and no other linting errors. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Assignment diff --git a/markdownlint/TOP006_fullFencedCodeLanguage/tests/TOP006_test.md b/markdownlint/TOP006_fullFencedCodeLanguage/tests/TOP006_test.md index 6e943ff3083..ecc95f04431 100644 --- a/markdownlint/TOP006_fullFencedCodeLanguage/tests/TOP006_test.md +++ b/markdownlint/TOP006_fullFencedCodeLanguage/tests/TOP006_test.md @@ -6,7 +6,7 @@ This file should flag with TOP006 errors, and no other linting errors. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Assignment @@ -22,9 +22,11 @@ Valid div due to each tag being surrounded by blank lines. console.log("This code block should flag an error as it uses "js" instead of "javascript"."); ``` + ~~~js console.log("The rule will still flag even if tilde delimiters are used"); ~~~ + ```javascript console.log("This code block is valid as it uses the appropriate full name."); diff --git a/markdownlint/TOP007_useMarkdownLinks/tests/TOP007_test.md b/markdownlint/TOP007_useMarkdownLinks/tests/TOP007_test.md index 5300fc8e616..47c225cac6c 100644 --- a/markdownlint/TOP007_useMarkdownLinks/tests/TOP007_test.md +++ b/markdownlint/TOP007_useMarkdownLinks/tests/TOP007_test.md @@ -6,7 +6,7 @@ This file should flag with TOP007 errors, and no other linting errors. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Assignment diff --git a/markdownlint/TOP008_useBackticksForFencedCodeBlocks/tests/TOP008_test.md b/markdownlint/TOP008_useBackticksForFencedCodeBlocks/tests/TOP008_test.md index 4791d569a88..b3004b8c807 100644 --- a/markdownlint/TOP008_useBackticksForFencedCodeBlocks/tests/TOP008_test.md +++ b/markdownlint/TOP008_useBackticksForFencedCodeBlocks/tests/TOP008_test.md @@ -6,7 +6,7 @@ This file should flag with TOP008 errors, and no other linting errors. This section contains a general overview of topics that you will learn in this lesson. -- LO item +- LO item. ### Assignment