class Asciidoctor::Reader
def skip_list_continuation
Skip the next line if it's a list continuation character
def skip_list_continuation if !@lines.empty? && @lines.first.chomp == '+' @lines.shift end nil end
def skip_list_continuation if !@lines.empty? && @lines.first.chomp == '+' @lines.shift end nil end