From 81f6ec449c7900ef9bbd375669c498e43ed3106d Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Thu, 30 Nov 2023 10:28:04 -0600 Subject: [PATCH] fix(docs): add fill in the blank to challenge template (#52305) --- docs/how-to-work-on-coding-challenges.md | 30 ++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/docs/how-to-work-on-coding-challenges.md b/docs/how-to-work-on-coding-challenges.md index 7931532354f..aeff081e161 100644 --- a/docs/how-to-work-on-coding-challenges.md +++ b/docs/how-to-work-on-coding-challenges.md @@ -170,6 +170,36 @@ More answers ## --video-solution-- The number for the correct answer goes here. + +# --fillInTheBlank-- + +These are for the English curriculum challenges. + +## --sentence-- + +Sentence to be shown with with blanks that campers have to fill in. Example: + +`Hello, You _ the new graphic designer, _?` + +The two underscores will show up as blanks. The sentence must be surrounded in backticks. + +## --blanks-- + +The solution for the first blank in the sentence above. Example: + +`are` + +### --feedback-- + +Feedback shown when campers input the wrong solution for this blank. + +--- + +Solution for the second blank. Example: + +`right` + +If no feedback is here, a generic "wrong answer" message will be shown. ```` > [!NOTE]