diff options
author | Robert Speicher <rspeicher@gmail.com> | 2015-07-21 00:21:51 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2015-07-28 18:56:26 -0400 |
commit | b07df8b1b05117352bc77fd4be0227dc588255fe (patch) | |
tree | 17e779e5182458bd97665bbab282bb66e2e9aab4 /spec/fixtures | |
parent | 97cedc5d1b023af56c035cccc5914d11bf6299de (diff) | |
download | gitlab-ce-b07df8b1b05117352bc77fd4be0227dc588255fe.tar.gz |
Make links inside ignored elements unique
This is to prevent false matches since the Autolink section uses
about.gitlab.com as well.
Diffstat (limited to 'spec/fixtures')
-rw-r--r-- | spec/fixtures/markdown.md.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/fixtures/markdown.md.erb b/spec/fixtures/markdown.md.erb index 02ab46c905a..75f6528ccdf 100644 --- a/spec/fixtures/markdown.md.erb +++ b/spec/fixtures/markdown.md.erb @@ -123,9 +123,9 @@ These are all plain text that should get turned into links: But it shouldn't autolink text inside certain tags: -- <code>http://about.gitlab.com/</code> -- <a>http://about.gitlab.com/</a> -- <kbd>http://about.gitlab.com/</kbd> +- <code>http://code.gitlab.com/</code> +- <a>http://a.gitlab.com/</a> +- <kbd>http://kbd.gitlab.com/</kbd> ### ExternalLinkFilter |