From d33778f8f779c7dd01decfe7f3676998fddfe887 Mon Sep 17 00:00:00 2001 From: CamiCasus Date: Sun, 21 Apr 2024 12:44:17 -0500 Subject: [PATCH 1/2] fix: Modify duplicated alternative --- content/questions/foundations/question-099.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/questions/foundations/question-099.md b/content/questions/foundations/question-099.md index 58c2a515..1144a970 100644 --- a/content/questions/foundations/question-099.md +++ b/content/questions/foundations/question-099.md @@ -10,4 +10,4 @@ draft: false 1. [ ] Delete and archive 1. [x] Close and delete 1. [ ] Archive and close -1. [ ] Archive and delete +1. [ ] Deactivate and archive From 376943c07ac39d2fde081b2c2e30dd5090771ebc Mon Sep 17 00:00:00 2001 From: CamiCasus Date: Sun, 21 Apr 2024 21:43:53 -0500 Subject: [PATCH 2/2] feat: Create two questions about markdown in foundations test --- content/questions/foundations/question-112.md | 14 ++++++++++++++ content/questions/foundations/question-113.md | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 content/questions/foundations/question-112.md create mode 100644 content/questions/foundations/question-113.md diff --git a/content/questions/foundations/question-112.md b/content/questions/foundations/question-112.md new file mode 100644 index 00000000..48542366 --- /dev/null +++ b/content/questions/foundations/question-112.md @@ -0,0 +1,14 @@ +--- +archetype: "questions" +title: "Question 112" +question: "What syntax is used in GitHub Markdown to create a task list?" +draft: false +--- + + +> https://learn.microsoft.com/en-us/training/modules/communicate-using-markdown/2-what-is-markdown + +1. [x] `- [ ] and - [x]` +1. [ ] `# TODO: and # DONE:` +1. [ ] `// TODO: and // DONE:` +1. [ ] ` and ` diff --git a/content/questions/foundations/question-113.md b/content/questions/foundations/question-113.md new file mode 100644 index 00000000..160fb4ae --- /dev/null +++ b/content/questions/foundations/question-113.md @@ -0,0 +1,14 @@ +--- +archetype: "questions" +title: "Question 113" +question: "Which Markdown element is not correctly paired with its syntax?" +draft: false +--- + + +> https://learn.microsoft.com/en-us/training/modules/communicate-using-markdown/2-what-is-markdown + +1. [ ] Heading - `# Heading` +1. [ ] Bold text - `**bold**` +1. [x] Inline code - `'''code'''` +1. [ ] Hyperlink - `[title](https://)`