mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-22 11:06:10 +10:00
Merge branch 'issue_14553' into 'master'
Set target="_blank" for external links Closes #14553 See merge request !4526
This commit is contained in:
@@ -50,6 +50,7 @@ v 8.9.0 (unreleased)
|
||||
- An indicator is now displayed at the top of the comment field for confidential issues.
|
||||
- RepositoryCheck::SingleRepositoryWorker public and private methods are now instrumented
|
||||
- Improve issuables APIs performance when accessing notes !4471
|
||||
- External links now open in a new tab
|
||||
|
||||
v 8.8.4 (unreleased)
|
||||
- Ensure branch cleanup regardless of whether the GitHub import process succeeds
|
||||
|
||||
@@ -15,6 +15,7 @@ module Banzai
|
||||
next if link.start_with?(internal_url)
|
||||
|
||||
node.set_attribute('rel', 'nofollow noreferrer')
|
||||
node.set_attribute('target', '_blank')
|
||||
end
|
||||
|
||||
doc
|
||||
|
||||
@@ -165,17 +165,27 @@ describe 'GitLab Markdown', feature: true do
|
||||
describe 'ExternalLinkFilter' do
|
||||
it 'adds nofollow to external link' do
|
||||
link = doc.at_css('a:contains("Google")')
|
||||
|
||||
expect(link.attr('rel')).to include('nofollow')
|
||||
end
|
||||
|
||||
it 'adds noreferrer to external link' do
|
||||
link = doc.at_css('a:contains("Google")')
|
||||
|
||||
expect(link.attr('rel')).to include('noreferrer')
|
||||
end
|
||||
|
||||
it 'adds _blank to target attribute for external links' do
|
||||
link = doc.at_css('a:contains("Google")')
|
||||
|
||||
expect(link.attr('target')).to match('_blank')
|
||||
end
|
||||
|
||||
it 'ignores internal link' do
|
||||
link = doc.at_css('a:contains("GitLab Root")')
|
||||
|
||||
expect(link.attr('rel')).not_to match 'nofollow'
|
||||
expect(link.attr('target')).not_to match '_blank'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Vendored
+1
-1
@@ -136,7 +136,7 @@ But it shouldn't autolink text inside certain tags:
|
||||
|
||||
### ExternalLinkFilter
|
||||
|
||||
External links get a `rel="nofollow"` attribute:
|
||||
External links get a `rel="nofollow noreferrer"` and `target="_blank"` attributes:
|
||||
|
||||
- [Google](https://google.com/)
|
||||
- [GitLab Root](<%= Gitlab.config.gitlab.url %>)
|
||||
|
||||
Reference in New Issue
Block a user