Guest User

Untitled

a guest
Feb 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. { name = 'constant.bold.test.markdown';
  2. begin = '(\*\*|__)(?=\S)(?=.+?(?<=\S)\1)';
  3. end = '(?<=\S)\1';
  4. patterns = (
  5. { name = 'markup.italic.markdown';
  6. match = '_(?=\S)[^_]+?(?<=\S)_(?=([^_])|(__|\*\*))';
  7. },
  8. { name = 'markup.italic.markdown';
  9. match = '\*(?=\S)[^\*]+?(?<=\S)\*(?=([^_])|(__|\*\*))';
  10. },
  11. );
  12. },
Add Comment
Please, Sign In to add comment