Hey! Is there any regex that supports empty line? EG:
This is the question? #flashcard
This line is included
This line is not included when using any regex;
I want to include these lines aswell
And its the similar story with Q/A regex. So i searched the github issues, and found this regex that includes empty lines and stops when 2 empty lines are found:
^Q: ((?:[^\n][\n]?)+)\n+A: ([\s\S]*?(?=\n{3,}))
But the problem with that is when the Question/answer is modified, it creates a new card instead of updating the new one.
Does anyone have a regex that works with empty lines?