fix: abnormal blockquote regexp (#404)

```markdown
面向具体实现编程 ==> 面向抽象接口编程
```.
面向具体实现编程 ==
> 面向抽象接口编程
This commit is contained in:
Mahoo Huang 2022-11-02 20:33:25 +08:00 committed by GitHub
parent 91a61e058a
commit a1068b6fe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import { escape } from "lodash";
export const BLOCKQUOTE_REG = /> ([\S ]+)(\n?)/;
export const BLOCKQUOTE_REG = /^>\s+([\S ]+)(\n?)/;
const renderer = (rawStr: string): string => {
const matchResult = rawStr.match(BLOCKQUOTE_REG);