This is going to be a niche one, but...anyone using #ruby and the parslet gem to write a grammar?
I'm trying to capture everything up until a codeblock that starts on a newline. (Including a codeblock that has a prefix such as being indented). But I hit a speedbump.
Example of what I'm trying to do with runnable reproduction https://github.com/kschiess/parslet/issues/229.
@Schneems I've done something similar, but not exactly the same. Instead of \A, I matched on newlines: \n or \r\n.
It might not be helpful, since it's doing something different, but my grammar is here: https://git.sr.ht/~czan/active_record_rules/tree/master/item/lib/active_record_rules/parse/parser.rb (it's an older commit because I simplified the grammar and got rid of the newline stuff recently).
@carlozancanaro
I’ve considered using a new line instead, but I’m pretty sure I’ll have the same trouble.
But thanks that code helps. I think my problem isn’t the \A but rather the repeat with an absent. I think I need to do something like you’ve done here https://git.sr.ht/~czan/active_record_rules/tree/master/item/lib/active_record_rules/parse/parser.rb#L115