We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a34c646 commit d8851a4Copy full SHA for d8851a4
script.js
@@ -0,0 +1,7 @@
1
+
2
+var issues = document.getElementsByClassName('issues-listing')[0];
3
+var list = issues.getElementsByClassName('js-navigation-open');
4
+list = Array.from(list);
5
+const s = list.map((item, index) => { return `- [${item.innerText}](${item.href})`;})
6
+const o = s.join('\n');
7
+console.log(o);
0 commit comments