Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions docs/labs/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,41 @@ info =
hints: [
{
present: "initial",
text: "The term 'initial' is not part of the answer."
text: "The term 'initial' is not part of the answer.",
examples: [
[ 'initial', ],
],
},
{
present: "unknown",
text: "Unknown is not part of the answer."
text: "Unknown is not part of the answer.",
examples: [
[ 'unknown', ],
],
},
{
absent: String.raw`EXPECTED`,
text: "The word 'EXPECTED' is expected."
text: "The word 'EXPECTED' is expected.",
examples: [
[ '', ],
[ 'fiddly', ],
],
},
{
present: "initial",
index: 1,
text: "The term 'initial' is not part of the answer."
text: "The term 'initial' is not part of the answer.",
examples: [
[ null, 'initial', ],
],
},
{
absent: String.raw`EXPECTED`,
index: 1,
text: "The word 'EXPECTED' is expected."
text: "The word 'EXPECTED' is expected.",
examples: [
[ null, 'not-here', ],
],
},
],
expected: [
Expand Down