Skip to content

Commit 8a976b7

Browse files
Fix gt/lt mixup in gh issue title
1 parent 95346d1 commit 8a976b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

userscripts/gh-issue-title-in-url.user.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name GH Issue Title in URL
33
// @namespace http://github.com/softwareengineerprogrammer
4-
// @version 1.1
4+
// @version 1.2
55
// @description Automatically add descriptive title query parameter to GitHub issue URLs to make them human-readable/referenceable
66
// @author softwareengineerprogrammer
77
// @match https://github.com/*/issues/*
@@ -34,8 +34,8 @@
3434
const customReplacements = new Map([
3535
[' ', '+'],
3636
['`', ''],
37-
['<', 'gt'],
38-
['>', 'lt'],
37+
['<', 'lt'],
38+
['>', 'gt'],
3939
['℃', 'C']
4040
])
4141
customReplacements.forEach(function (value, key, map) {

0 commit comments

Comments
 (0)