Skip to content

Instantly share code, notes, and snippets.

@hgcummings
Last active April 7, 2016 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hgcummings/4e83bbb4608a6210e0e07691b65cdb42 to your computer and use it in GitHub Desktop.
Save hgcummings/4e83bbb4608a6210e0e07691b65cdb42 to your computer and use it in GitHub Desktop.
JIRA bullets bookmarklet

Bookmarklet for turning bullet lists pasted in from MS Office into JIRA/Confluence markup bullet points.

Currently supports unordered lists up to two levels deep.

javascript:var elem = jQuery(':focus'); elem.val(elem.val().replace(/•\t/g, '* ').replace(/o\t/g, '** '));

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