1
0
Fork 0
forked from gitea/nas

Fix hashtag matching pattern matching some link anchors (#30190)

This commit is contained in:
Claire 2024-05-06 14:47:19 +02:00
parent 5cb36daa0f
commit 0fc738a323
2 changed files with 5 additions and 1 deletions

View file

@ -36,6 +36,10 @@ RSpec.describe Tag do
expect(subject.match('https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111895#c4')).to be_nil
end
it 'does not match URLs with hashtag-like anchors after a non-ascii character' do
expect(subject.match('https://example.org/testé#foo')).to be_nil
end
it 'does not match URLs with hashtag-like anchors after an empty query parameter' do
expect(subject.match('https://en.wikipedia.org/wiki/Ghostbusters_(song)?foo=#Lawsuit')).to be_nil
end