Files
cli/vendor/pest_derive/tests/surround.pest

10 lines
190 B
Plaintext
Raw Normal View History

Quote = _{ _QuoteStart ~ QuoteChars ~ _QuoteEnd }
_QuoteStart = _{
( "(" ~ PUSH_LITERAL(")") )
| ( "<" ~ PUSH_LITERAL(">") )
}
_QuoteEnd = _{ POP }
QuoteChars = { (!PEEK ~ ANY)* }