{{$NEXT}}
+-POD fixes for TOML::Tiny::Grammar
0.04 2020-01-21
-Remove superfluous dependency on DateTime::Format::RFC3339, which was only
=head1 VERSION
-version 0.04
+version 0.05
=head1 SYNOPSIS
C<TOML::Tiny> includes support for integers specified in binary, octal or hex
as well as the special float values C<inf> and C<nan>.
+=head1 SEE ALSO
+
+=over
+
+=item L<TOML::Tiny::Grammar>
+
+Regexp scraps used by C<TOML::Tiny> to parse TOML source.
+
+=back
+
=head1 ACKNOWLEDGEMENTS
Thanks to L<ZipRecruiter|https://www.ziprecruiter.com> for encouraging their
C<TOML::Tiny> includes support for integers specified in binary, octal or hex
as well as the special float values C<inf> and C<nan>.
+=head1 SEE ALSO
+
+=over
+
+=item L<TOML::Tiny::Grammar>
+
+Regexp scraps used by C<TOML::Tiny> to parse TOML source.
+
+=back
+
=head1 ACKNOWLEDGEMENTS
Thanks to L<ZipRecruiter|https://www.ziprecruiter.com> for encouraging their
package TOML::Tiny::Grammar;
-# ABSTRACT: exports regex definition of TOML grammar
+# ABSTRACT: exports regex definitions used to parse TOML source
use strict;
use warnings;
=head1 PATTERNS
=head2 White space and ignorables
+
=head3 $WS
+
=head3 $CRLF
+
=head3 $EOL
+
=head3 $Comment
=head2 Keys
+
=head3 $BareKey
+
=head3 $QuotedKey
+
=head3 $SimpleKey
+
=head3 $DottedKey
+
=head3 $Key
=head2 Values
+
=head3 $Boolean
=head3 $Escape
+
=head3 $StringLiteral
+
=head3 $MultiLineStringLiteral
+
=head3 $BasicString
+
=head3 $MultiLineString
+
=head3 $String
=head3 $Date
+
=head3 $Time
+
=head3 $DateTime
=head3 $Hex
+
=head3 $Oct
+
=head3 $Bin
+
=head3 $Dec
+
=head3 $Integer
=head3 $Float