jeopardy/example.txt
2023-04-16 00:40:43 -05:00

54 lines
1.4 KiB
Plaintext

/*
* Jeopardy File Format
* Questions and answers go below categories as seen below
* # is the character to start a category
* ? is the character to start a question
* & is the character to provide an answer
* Lines starting with any other character are ignored
*
* If 5 questions aren't provided for a category
* The rest of the 5 buttons will be autofilled as blank/used questions
*
* If more than 5 questions/answers are provided, the site uses the first five
*
* Keybinds are as follows
* c : Reset the page / delete any stored games
* esc/q : Return back to the main board
* space : Reveal the answer for the selected question
* p : Play / Stop the jeopardy theme song
* - : Add another team score box
* + : Remove the last team score box
* h : Reveal this help file
*
* Note: if you refresh the page, it will reset the board (What has been answered)
* Team scores will not be saved on page refresh!
*/
#This is Example Category 1
?Question
&Answer
?Question
&Answer
?Question
&Answer
?Question
&Answer
?Question
&Answer
#This is Example Category 2
?Question that is worth 100
&Answer that is worth 100
?Question that is worth 200
&Answer that is worth 200
?Question that is worth 300
&Answer that is worth 300
?Question that is worth 400
&Answer that is worth 400
?Question that is worth 500
&Answer that is worth 500