ruby.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
If you are interested in the Ruby programming language, come join us! Tell us about yourself when signing up. If you just want to join Mastodon, another server will be a better place for you.

Administered by:

Server stats:

1.1K
active users

Richard Schneeman

This is going to be a niche one, but...anyone using 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 github.com/kschiess/parslet/is.

Reproduction Code: require 'bundler/inline' gemfile do source 'https://rubygems.org' gem 'parslet', '2.0.0' gem 'minitest', '5.25.4' end require 'minitest' require "parslet" require "parslet/conven...
GitHubMatching beginning of line does not work as expected with repetition · Issue #229 · kschiess/parsletBy schneems

@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: git.sr.ht/~czan/active_record_ (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 git.sr.ht/~czan/active_record_