- Added
pegtl_string_tandpegtl_istring_tto simplify string definitions as follows:
pegtl::string< 'h', 'e', 'l', 'l', 'o' > // Normal
pegtl_string_t( "hello" ) // New shortcut- Added
examples/abnf2pegtl.ccapplication that converts grammars based on ABNF (RFC 5234) into a PEGTL C++ grammar. - Added
contrib/alphabet.hhwith integer constants for alphabetic ASCII letters.