The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

TOML::Tiny::Grammar - exports regex definition of TOML grammar

VERSION

version 0.02

SYNOPSIS

  use TOML::Tiny::Grammar;

  if ($src =~ /$MultiLineString/) {
    ...
  }

DESCRIPTION

Exports various regexex for parsing TOML source.

PATTERNS

White space and ignorables =head3 $WS =head3 $CRLF =head3 $EOL =head3 $Comment

Keys =head3 $BareKey =head3 $QuotedKey =head3 $SimpleKey =head3 $DottedKey =head3 $Key

Values =head3 $Boolean

$Escape =head3 $StringLiteral =head3 $MultiLineStringLiteral =head3 $BasicString =head3 $MultiLineString =head3 $String

$Date =head3 $Time =head3 $DateTime

$Hex =head3 $Oct =head3 $Bin =head3 $Dec =head3 $Integer

$Float

AUTHOR

Jeff Ober <sysread@fastmail.fm>

COPYRIGHT AND LICENSE

This software is copyright (c) 2020 by Jeff Ober.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.