I am trying to create a document with a series of multiple choice questions like so:

1.  Question
     A. Answer 1
     B. Answer 2
     C. Answer 3

2.  Question 2

...

This is working fine, but I want to add some CSS to help wkhtmltopdf break correctly between questions only. To do that, I need some custom classes in each question.

Ideally, what I'd like is the html to look like 

<ol type="1">
 
<li class="question">
   Question
   
<ol type="A">
     
<li class="answer">Answer 1</li>
     
<li class="answer">Answer 2</li>
   
</ol>
   <li class="question">
   Question 2
   
<ol type="A">
     
<li class="answer">Answer 1</li>
     
<li class="answer">Answer 2</li>
   
</ol>
 
</ol>

Is there any way to do this (or achieve a similar result) directly in the markdown? 

--
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org.
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/a2d5ac43-54f1-46fc-80b9-85f0baa07ddf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.