class Asciidoctor::Reader

def peek_line

Returns nil if there is no more data.
Returns a String dup of the next line of the source data if data is present.

Public: Get the next line of source data. Does not consume the line returned.
def peek_line
  @lines.first.dup if @lines.first
end