Initial test of trying to create theme for VuePress for programming challenges for some of my courses.
Install the theme
npm install --save vuepress-theme-challengesNext add theme to config:
module.exports = {
title: '...................',
description: '...................',,
theme: 'vuepress-theme-challenges',
themeConfig: {
}
}Add following front-matter to your challenge README:
---
name: Biggest Number
description: Biggest number out of 3.
details: ./07_making_decisions/biggest_number/README.md
difficulty: Medium
solution: false
unitTests: true
keywords: operators
solved: false
notes:
---