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.58 KB | None | 0 0
  1. { name = 'markup.heading.mediawiki';
  2. match = '^=+(?=\s*$)';
  3. },
  4. { name = 'markup.heading.mediawiki';
  5. comment = '
  6. This matches lines which begin and end with some
  7. number of “=” marks. If they are mismatched, then
  8. interior “=” marks will be treated as invalid.
  9. ';
  10. begin = '^(=+)(?=.*\1\s*$)';
  11. end = '\1\s*$';
  12. patterns = (
  13. { name = 'invalid.illegal.extra-equals-sign.mediawiki';
  14. match = '=';
  15. },
  16. { include = '#inline'; },
  17. );
  18. },
Add Comment
Please, Sign In to add comment