A gist for VS Code to replace *italic* notation in markdown with _italic_ notation
Regex to match:
(?<!\*)\*(?!\*|\s)(.+?)(?<!\s|\*)\*(?!\*)
Regex to substitute:
_$1_
A gist for VS Code to replace *italic* notation in markdown with _italic_ notation
Regex to match:
(?<!\*)\*(?!\*|\s)(.+?)(?<!\s|\*)\*(?!\*)
Regex to substitute:
_$1_