class Asciidoctor::ListItem

def text

Returns the converted String text for this ListItem

can be modified by altering the subs property of this object.
By default, normal substitutions are applied to the text. The substitutions

Public: Get the String text of this ListItem with substitutions applied.
def text
  # NOTE @text can be nil if dd node only has block content
  @text && (apply_subs @text, @subs)
end