Open
Description
The documentation only shows examples of parsing numbers and single characters. Almost all the tests also don't parse strings, which makes it hard to know what one needs to do, especially if one is a bit of a beginner in Rust and rust-peg.
The information about the 'input
lifetime annotation is a bit elusive (not documented), and it is not clear how this affects the lifetime annotations needed for any structs receiving the parsed str or Vec of str.
It would also be great if there were some recommendations as to how strings should be parsed, and if zero-copy can be achieved in any way.
Some proper documentation with a few examples of parsing singular or vec of strings (with operators such as ** and ++) would be really helpful.