Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions messages/next.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# MarkdownEditing {version} Changelog

Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of
feedback you can use [GitHub issues][issues].

## Bug Fixes

## New Features
- add a separate scope `markup.underline.link.protocol` to allow synax highlight e.g. `https` in urls separtely from the rest of the url
- add a separate scope `markup.underline.link.www` to allow synax highlight `www.` in urls separtely from the rest of the url
## Changes

[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues
7 changes: 5 additions & 2 deletions syntaxes/Markdown.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -4045,9 +4045,12 @@ contexts:
# Github Flavoured Markdown
# After a valid domain, zero or more non-space non-< characters may follow
# https://github.github.com/gfm/#autolinks-extension-
- match: (?:(?:https|http|ftp)(://)|www\.)[\w-]+
- match: (?:(https|http|ftp)(://))(www\.)?[\w-]+|(www\.)[\w-]+
captures:
1: punctuation.separator.path.markdown
1: markup.underline.link.protocol
2: punctuation.separator.path.markdown
3: markup.underline.link.www
4: markup.underline.link.www
push: autolink-inet-unquoted-content

autolink-inet-angled-content:
Expand Down
Loading