Fix regex
This commit is contained in:
parent
ffd1903a65
commit
c23afc7f55
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ impl BlockquoteRule {
|
|||
);
|
||||
|
||||
Self {
|
||||
start_re: Regex::new(r"(?:^|\n)>(?:\[((?:\\.|[^\\\\])*?)\])?\s*(.*)").unwrap(),
|
||||
start_re: Regex::new(r"(?:^|\n)>(?:\[((?:\\.|[^\\\\])*?)\])?\s*?(.*)").unwrap(),
|
||||
continue_re: Regex::new(r"(?:^|\n)>\s*?(.*)").unwrap(),
|
||||
properties: PropertyParser { properties: props },
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue