This has been frustrating me for about 20 minutes already and I don't want to spend much more time on it, so any help would be much appreciated.
The editor that we use which syntax highlights Markdown text has has bug in which it highlights text as code when it isn't supposed to. The regex to denote code currently is /^(k:\t|\s{4,})/
which basically means find a line that begins with a tab or at least four spaces. I need to change this to say "find a line that is preceded by a blank line (aka by at least two \n\n) that then begins with a tab or at least four spaces.
Can anyone help me out? Thanks in advance!!! :)