Guest User

Untitled

a guest
Feb 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. { name = 'markup.heading.mediawiki';
  2. comment = '
  3. This matches lines which begin and end with some
  4. number of “=” marks. If they are mismatched, then
  5. interior “=” marks will be treated as invalid.
  6. ';
  7. begin = '^(=+)(?=.*\1\s*$)';
  8. end = '\1\s*$';
  9. patterns = (
  10. { name = 'invalid.illegal.extra-equals-sign.mediawiki';
  11. match = '=';
  12. },
  13. { include = '#inline'; },
  14. );
  15. }
Add Comment
Please, Sign In to add comment