From 5aab82cc89a26b9af83a4bfaa902cf0c9935d705 Mon Sep 17 00:00:00 2001
From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Date: Tue, 26 Feb 2019 11:21:00 -0800
Subject: [PATCH] fix(docs) Corrected challenge template example (#35307)
---
docs/how-to-work-on-coding-challenges.md | 47 +++++++++++++++---------
1 file changed, 30 insertions(+), 17 deletions(-)
diff --git a/docs/how-to-work-on-coding-challenges.md b/docs/how-to-work-on-coding-challenges.md
index b618d50d93..7cade04186 100644
--- a/docs/how-to-work-on-coding-challenges.md
+++ b/docs/how-to-work-on-coding-challenges.md
@@ -12,14 +12,22 @@ You can also clone the project and edit locally on your computer. For help with
### Challenge Template
-Here is a template of what the challenge markdown files look like.
+Below is a template of what the challenge markdown files look like.
+
+**Notes:**
+
+1. In the below sections, examples of `{ext}` are:
+ * `html` - HTML/CSS
+ * `js` - JavaScript
+ * `jsx` - JSX
+
+2. For the `Tests` section below, `text` and `testString` should be valid YAML strings. `testString` can be a stringified function or expression possibly using Chai asserts.
````md
---
id: Unique identifier (alphanumerical, MongoDB_id)
title: Challenge Title
challengeType: 0
-guideUrl: 'url of guide article'
videoUrl: 'url of video explanation'
---
@@ -32,40 +40,45 @@ A Description of the challenge and what is required to pass