artifact-app 1.0.1

Artifact is a design doc tool made for developers. It allows anyone to easily write and link their design docs both to each other and to source code, making it easy to track how complete their project is. Documents are revision controllable, can be rendered as a static web page and have a full suite of command line tools for searching, formatting and displaying them.
Documentation
[REQ-load]
partof = 'REQ-purpose'
text = '''
The user shall be able to easily configure the quiz questions through a simple
csv format consisting of two columns: the question and the answer.
'''

[SPC-cmd]
partof = 'REQ-purpose'
text = '''
The minimum viable product shall be a command line utility that is given the
path to one or more question files as arguments.

Additional arguments will include:
- `-t`: specify the time allowed for each question
- `-T`: specify the total time allowed for the whole quiz
- `-r NUM`: repeat questions only a certain number of times.
    By default there is no limits.

The program will ask one question at a time, recording how many answers
the user got correct/incorrect.

When the program is complete:
- time taken, broken up by whole quiz and each question
- the user's score
'''

[SPC-response]
partof = 'SPC-cmd'
text = '''
When an answer to a question is correct, a happy message **shall** be 
displayed. Otherwise, an error message with the correct answer **shall** be 
displayed.

TODO: detail how the message shall look.
'''

[SPC-random]
partof = 'REQ-purpose'
text = '''
The questions **shall** be presented randomly.

Questions that are missed **shall** be given a higher weight to being asked 
again, to help the user learn.
'''