Merge pull request #3131 from AndrewKvalheim/nofollow
Set `nofollow` on user-generated links
This commit is contained in:
commit
8b909a95c9
2 changed files with 14 additions and 1 deletions
|
|
@ -16,5 +16,18 @@ describe FormatHelper, type: :helper do
|
|||
it 'should return HTML for header markdown' do
|
||||
expect(markdown('# this is my header')).to eq "<h1>this is my header</h1>\n"
|
||||
end
|
||||
|
||||
it 'escapes input HTML' do
|
||||
expect(markdown('<em>*a*</em>')).to eq "<p><em><em>a</em></em></p>\n"
|
||||
end
|
||||
|
||||
it 'removes unallowed elements' do
|
||||
expect(markdown('<em>*<style>a</style>*</em>', false)).to eq "<p><em><em>a</em></em></p>\n"
|
||||
end
|
||||
|
||||
it 'sets nofollow on links' do
|
||||
expect(markdown('[a](https://example.com/)'))
|
||||
.to eq "<p><a href=\"https://example.com/\" rel=\"nofollow\">a</a></p>\n"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue