class Asciidoctor::Callouts

def next_list

Returns nothing

Public: Advance to the next callout list in the document
def next_list
  @list_index += 1
  if @lists.size < @list_index
    @lists << []
  end
  @co_index = 1
  nil
end