Metadata-Version: 2.1
Name: mkdocs_quiz
Version: 0.0.3
Summary: A mkdocs plugin to create a quiz in your markdown document.
Home-page: https://github.com/skyface753/mkdocs-quiz
Author: Sebastian Jörz
Author-email: sjoerz@skyface.de
License: Apache License 2.0
Description-Content-Type: text/markdown
Requires-Dist: mkdocs

# MkDocs Quiz Plugin

## Create your first quiz

```bash
quiz-start
quiz-question: Are you ready?
quiz-answer-correct: <code>Yes!</code>
quiz-answer: No!
quiz-answer: Maybe!
quiz-content:
<h2>Provide some additional content</h2>
quiz-end
```

> **Info** The answers can styled with HTML (like `<code>Yes!</code>`)

> **Warning** The quiz content needs to be valid **_HTML_**

## Disable for a page

```markdown
---
quiz: disable
---
```
