Skip to content

Instantly share code, notes, and snippets.

@mparker17
Created May 14, 2016 18:26
Show Gist options
  • Save mparker17/edf29c9ecfbc1815efce409effe334d2 to your computer and use it in GitHub Desktop.
Save mparker17/edf29c9ecfbc1815efce409effe334d2 to your computer and use it in GitHub Desktop.
Markdown to Jira conversion
Bold:
Find: \*\*([\P{C}]+?)\*\*
Replace: *$1*
Italics:
Find: \*([\P{C}]+?)\*
Replace: _$1_
Monospace:
Find: `([\P{C}]+?)`
Replace: {{$1}}
First-level ordered lists:
Find: ^[\d]+\.
Replace: #
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment