A hugo shortcode for writing quizzes with a markdown-like syntax, called quizdown.
🚀 See the demo based on the hugo learn theme or try the interactive quizdown live editor.
- supports markdown text formatting, images and syntax highlighting.
- different quiz-types: single-choice, multiple-choice, sequence.
- support for hints and explanations.
- options for color theme, question shuffling, localization.
- mobile friendly with touch support for all question types.
Quizdown is a javascript library which is developed in a separated project. hugo-quiz uses a simple shortcode to use quizdown with Hugo. For the library, you can either use a link to a CDN or download and link to the local quizdown.js
file.
- To install and setup the library, copy the file
demo/layouts/partials/custom-header.html
into your locallayouts/partials/
folder. This inserts the nescessary javascript code inside thehead
section of the hugo website. - To install the shortcode, copy the content from
demo/layouts/shortcodes/quizdown.html
into your locallayouts/shortcodes/
folder. - Currently, the
--minify
flag of the hugo command causes issues with the raw quizdown-markdown code. Please remove the flag when building your website or use the following option in yourconfig.toml
:
[minify]
disableHTML = true
If your theme does not offer a custom-header.html
you need to add the library (and the extensions you want to use) to the head
section of your website:
<head>
...
<script
src="https://cdn.jsdelivr.net/npm/quizdown@latest/public/build/quizdown.js">
</script>
<script
src="https://cdn.jsdelivr.net/npm/quizdown@latest/public/build/extensions/quizdownKatex.js">
</script>
<script
src="https://cdn.jsdelivr.net/npm/quizdown@latest/public/build/extensions/quizdownHighlight.js">
</script>
<script>quizdown.register(quizdownHighlight).register(quizdownKatex).init()</script>
...
</head>
Usage (edit example in 🚀 quizdown editor)
Write quizzes in plain markdown in any of your files in the content
directory:
# Hugo Quiz
{{< quizdown >}}
---
primary_color: orange
secondary_color: lightgray
text_color: black
shuffle_questions: false
---
## The sound of dog
---
shuffle_answers: false
---
What do dogs sound like?
> Some hint
- [ ] yes
- [ ] no
- [ ] `self.sound = "meow"`
- [x] wuff
## Put the [days](https://en.wikipedia.org/wiki/Day) in order!
> Monday is the *first* day of the week.
1. Monday
2. Tuesday
3. Wednesday
4. Friday
5. Saturday
{{< /quizdown >}}
The quizzes are for fun and not for serious assessment. Since everything is rendered on the client side, the hints and solutions to the questions become visible once javascript is disabled in the browser.
Check out the documentation on the main project page. You might be interested in:
- different quiz-types: single-choice, multiple-choice, sequence.
- support for hints and explanations.
- options for color theme, question shuffling, localization.
Tested with version 0.80.0
of Hugo and the Hugo Learn theme.
Visit https://bonartm.github.io/hugo-quiz/ for a live demo based on the hugo-learn theme. You can also view a local version of the demo.
First download the theme:
git submodule update --init --recursive
Then start the server:
cd demo
hugo server -D