Skip to content

Instantly share code, notes, and snippets.

@arterm-sedov
Last active December 5, 2024 14:21
Show Gist options
  • Save arterm-sedov/01d0bebe1716690ad798e6467a2d0c2a to your computer and use it in GitHub Desktop.
Save arterm-sedov/01d0bebe1716690ad798e6467a2d0c2a to your computer and use it in GitHub Desktop.
replace italic ** with __ in markdown

A gist for VS Code to replace *italic* notation in markdown with _italic_ notation

Regex to match:

(?<!\*)\*(?!\*|\s)(.+?)(?<!\s|\*)\*(?!\*)

Regex to substitute:

_$1_

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment