We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When questions are generated without solutions, the answer choices look like this (correct):
<ol class="answers"> <li>choice 1</li> <li>choice 2</li> </ol>
But when --solutions is used, they incorrectly look like this (note the embedded <p>...</p>), resulting in extra vertical whitespace:
--solutions
<p>...</p>
<ol class="answers"> <li class="incorrect"><p>choice 1</p></li> <li class="correct"><p>choice 2</p></li> </ol>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When questions are generated without solutions, the answer choices look like this (correct):
But when
--solutions
is used, they incorrectly look like this (note the embedded<p>...</p>
), resulting in extra vertical whitespace:The text was updated successfully, but these errors were encountered: