We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95346d1 commit 8a976b7Copy full SHA for 8a976b7
userscripts/gh-issue-title-in-url.user.js
@@ -1,7 +1,7 @@
1
// ==UserScript==
2
// @name GH Issue Title in URL
3
// @namespace https://github.com/softwareengineerprogrammer
4
-// @version 1.1
+// @version 1.2
5
// @description Automatically add descriptive title query parameter to GitHub issue URLs to make them human-readable/referenceable
6
// @author softwareengineerprogrammer
7
// @match https://github.com/*/issues/*
@@ -34,8 +34,8 @@
34
const customReplacements = new Map([
35
[' ', '+'],
36
['`', ''],
37
- ['<', 'gt'],
38
- ['>', 'lt'],
+ ['<', 'lt'],
+ ['>', 'gt'],
39
['℃', 'C']
40
])
41
customReplacements.forEach(function (value, key, map) {
0 commit comments