forked from breck7/pldb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopLangs.scroll
66 lines (64 loc) · 1.08 KB
/
topLangs.scroll
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
importOnly
replaceNodejs
// const {Tables} = require("./Computer.js")
const tops = [
{
"name": "JavaScript",
"id": "javascript",
"rank": "1"
},
{
"name": "Python",
"id": "python",
"rank": "2"
},
{
"name": "C",
"id": "c",
"rank": "3"
},
{
"name": "Java",
"id": "java",
"rank": "4"
},
{
"name": "C++",
"id": "cpp",
"rank": "5"
},
{
"name": "HTML",
"id": "html",
"rank": "6"
},
{
"name": "Perl",
"id": "perl",
"rank": "7"
},
{
"name": "CSS",
"id": "css",
"rank": "8"
},
{
"name": "Ruby",
"id": "ruby",
"rank": "9"
},
{
"name": "PHP",
"id": "php",
"rank": "10"
}
]
module.exports = {
TOP_LANGS: tops
.map(file => `<a href="concepts/${file.id}.html">${file.name}</a>`)
.join(" · ")
}
Top Languages
link ./lists/top1000.html
class pldbHomepageLink
TOP_LANGS