bodyParser property

Parser<String> bodyParser
final

Parser for the body of a multiline basic TOML string.

ml-basic-body =
  *mlb-content *( mlb-quotes 1*mlb-content ) [ mlb-quotes ]

Implementation

static final Parser<String> bodyParser = SequenceParser([
  contentParser.star().join(),
  (quotesParser & contentParser.plus().join()).join().star().join(),
  quotesParser.optionalWith(''),
]).join();