]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Add a test for link title highlighting #343
authorHiroshi Shirosaki <h.shirosaki@gmail.com>
Thu, 21 Dec 2017 12:55:04 +0000 (21:55 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Thu, 21 Dec 2017 12:55:04 +0000 (21:55 +0900)
test/syntax.vader

index 05401551077f2d5a37a84f8eac242e750a3882e9..0adae58a586e5a19801e5ba868a0e7086e666456 100644 (file)
@@ -629,6 +629,14 @@ Execute (link in blockquote):
   AssertEqual SyntaxOf('a'), 'mkdLink'
   AssertEqual SyntaxOf('foo'), 'mkdInlineURL'
 
+Given markdown;
+[https://domain.tld](https://domain.com) not_a_link
+
+Execute (link with url title):
+  AssertEqual SyntaxOf('https://domain.tld'), 'mkdInlineURL'
+  AssertEqual SyntaxOf('https://domain.com'), 'mkdInlineURL'
+  AssertNotEqual SyntaxOf('not_a_link'), 'mkdInlineURL'
+
 # Code Blocks
 
 Given markdown;