From fe3f0b2ac48c277f2f1c3c8706c7187082d82c5d Mon Sep 17 00:00:00 2001
From: Shaun Hamilton <51722130+Sky020@users.noreply.github.com>
Date: Mon, 31 Aug 2020 04:53:09 +0100
Subject: [PATCH] fix: remove quotation marks from code tag text (#38316)
---
...rdize-times-with-the-html5-datetime-attribute.english.md | 6 +++---
.../use-the-strong-tag-to-make-text-bold.english.md | 2 +-
.../use-the-u-tag-to-underline-text.english.md | 2 +-
.../add-a-submit-button-to-a-form.english.md | 2 +-
.../add-placeholder-text-to-a-text-field.english.md | 2 +-
.../basic-html-and-html5/create-an-ordered-list.english.md | 4 ++--
.../headline-with-the-h2-element.english.md | 4 ++--
.../inform-with-the-paragraph-element.english.md | 2 +-
8 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md
index f3dd3b38a6..5e2c1b2a23 100644
--- a/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/applied-accessibility/standardize-times-with-the-html5-datetime-attribute.english.md
@@ -24,13 +24,13 @@ Camper Cat's Mortal Kombat survey results are in! Wrap a time tag a
```yml
tests:
- - text: Your code should have a p element which includes the text "Thank you to everyone for responding to Master Camper Cat's survey." and include a time element.
+ - text: Your code should have a p element which includes the text Thank you to everyone for responding to Master Camper Cat's survey. and include a time element.
testString: assert(timeElement.length);
- - text: Your added time tags should wrap around the text "Thursday, September 15<sup>th</sup>".
+ - text: Your added time tags should wrap around the text Thursday, September 15<sup>th</sup>.
testString: assert(timeElement.length && $(timeElement).html().trim() === "Thursday, September 15th");
- text: Your added time tag should have a datetime attribute that is not empty.
testString: assert(datetimeAttr && datetimeAttr.length);
- - text: Your added datetime attribute should be set to a value of 2016-09-15.
+ - text: Your added datetime attribute should be set to a value of 2016-09-15.
testString: assert(datetimeAttr === "2016-09-15");
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md
index 6b7783e2f8..7f343ffed1 100644
--- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-strong-tag-to-make-text-bold.english.md
@@ -26,7 +26,7 @@ tests:
testString: assert($('strong').length == 1);
- text: The strong tag should be inside the p tag.
testString: assert($('p').children('strong').length == 1);
- - text: The strong tag should wrap around the words "Stanford University".
+ - text: The strong tag should wrap around the words Stanford University.
testString: assert($('strong').text().match(/^Stanford University\.?$/gi));
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md
index 51f1ab8622..fb960731cf 100644
--- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.english.md
@@ -25,7 +25,7 @@ Wrap the u tag only around the text "Ph.D. students".
tests:
- text: Your code should add a u tag to the markup.
testString: assert($('u').length === 1);
- - text: The u tag should wrap around the text "Ph.D. students".
+ - text: The u tag should wrap around the text Ph.D. students.
testString: assert($('u').text() === 'Ph.D. students');
```
diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md
index 1f0ec03571..a27fe1293a 100644
--- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-a-submit-button-to-a-form.english.md
@@ -28,7 +28,7 @@ tests:
testString: assert($("form").children("button").length > 0);
- text: Your submit button should have the attribute type set to submit.
testString: assert($("button").attr("type") === "submit");
- - text: Your submit button should only have the text "Submit".
+ - text: Your submit button should only have the text Submit.
testString: assert($("button").text().match(/^\s*submit\s*$/gi));
- text: Your button element should have a closing tag.
testString: assert(code.match(/<\/button>/g) && code.match(/