accept empty snippet regex replace elements

pull/6407/head
Pascal Kuthe 2 years ago committed by Blaž Hrastnik
parent 617f09adc4
commit 47420db516

@ -311,9 +311,9 @@ mod parser {
seq!( seq!(
"/", "/",
// TODO parse as ECMAScript and convert to rust regex // TODO parse as ECMAScript and convert to rust regex
non_empty(text(&['/'], &['/'])), text(&['/'], &['/']),
"/", "/",
one_or_more(choice!( zero_or_more(choice!(
format(), format(),
// text doesn't parse $, if format fails we just accept the $ as text // text doesn't parse $, if format fails we just accept the $ as text
map("$", |_| FormatItem::Text("$".into())), map("$", |_| FormatItem::Text("$".into())),

Loading…
Cancel
Save