Getting Started

Sign in at whoiswilson.app using your Google account, Microsoft account, or an email and password. No installation required.

For Quiz Authors

Writing a Quiz

Quizzes are written in plain Markdown with a YAML header. You can use any text editor. Here is a minimal example:

---
title: "My First Quiz"
tags: [sample]
---

##### Question q001
type: single_choice
correct: [b]

What colour is the sky on a clear day?

A. Green
B. Blue
C. Red
D. Yellow

###### Explanation
The sky appears blue due to Rayleigh scattering of sunlight.

Frontmatter Options

The YAML block at the top of the file controls quiz settings:

Question Types

Four question types are supported:

Question Format

Each question block follows this pattern:

##### Question q001
type: single_choice
correct: [b]

The question text goes here. Markdown is supported
including **bold**, `code`, and tables.

A. First option
B. Second option
C. Third option
D. Fourth option

###### Explanation
This text is shown after the student answers.
Explanations are optional but recommended.

Separate questions with a line containing only --- (three dashes). Each question needs a unique ID after ##### Question.

Adding Images

Reference images in your quiz using the notation ![[filename.png]]. When you upload the quiz, attach the image files alongside the Markdown file.

Uploading a Quiz

  1. Sign in and go to your dashboard
  2. Click Upload Quiz and select your .md file
  3. If your quiz references images, click Add images and select them
  4. Click Upload -- the quiz is validated immediately and any errors are shown

Updating a Quiz

Open the quiz from your dashboard, click Upload New Version, and select the updated file. The version number increments automatically. Students who started an attempt on the old version will finish it on that version.

Enrolling Students

  1. Open a quiz from your dashboard
  2. In the Enrolled Students section, enter the student's email address and click Enrol
  3. If the student already has an account, they are enrolled immediately
  4. If not, a pending invitation is created -- they will be automatically enrolled when they sign up

For Students

Taking a Quiz

  1. Sign in -- quizzes assigned to you appear in the Assigned to You section
  2. Click Start to begin an attempt
  3. Answer questions one at a time; you can change answers before submitting
  4. Click Complete when finished to see your score and detailed feedback

Reviewing Results

After completing a quiz, you can review each question with the correct answer, your answer, and the explanation. Retake quizzes as many times as you like.

Tips