Closed tiagotex closed 6 years ago
I'm trying to create a bot that expects a command like:
todo: first second
In the current version match[:expression] would return:
match[:expression]
first
It seems like command regex parser doesn't allow multiline, I fixed it using Regexp::MULTILINE, now match[:expression] returns:
Regexp::MULTILINE
first second
Is this something you would be interested in supporting?
Perfect, thanks.
I'm trying to create a bot that expects a command like:
In the current version
match[:expression]
would return:It seems like command regex parser doesn't allow multiline, I fixed it using
Regexp::MULTILINE
, nowmatch[:expression]
returns:Is this something you would be interested in supporting?