maddy icon indicating copy to clipboard operation
maddy copied to clipboard

About codeblock parser problem and solution

Open xingyun86 opened this issue 5 years ago • 1 comments

Minimal Code Example

static std::regex re("^(?:`){3}$");

Conditions

. .
Operating System: Win10
Compiler: VS2019
Compiler flags: C++14
maddy version: newest

Description

I found codeblock parser invalid。I had solved it with new re string “^(?:`){3}(.*)$”

static std::regex re("^(?:`){3}$"); ===>>> static std::regex re("^(?:`){3}(.*)$"); 

now it works good!

xingyun86 avatar Aug 20 '20 03:08 xingyun86

Can you please check, if #41 solves your problem? If not, please also provide example markdown with which it currently doesn't work for you. Thank you very much.

progsource avatar Jul 24 '23 18:07 progsource