bodyParser property

Parser<String> bodyParser
final

Parser fir the body of a multiline literal TOML string.

ml-literal-body =
    *mll-content *( mll-quotes 1*mll-content ) [ mll-quotes ]

Implementation

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