File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -112,31 +112,31 @@ def self.aliases
112
112
{
113
113
'angular' => 'ng' ,
114
114
'angular.js' => 'ng' ,
115
- 'backbone.js ' => 'bb' ,
116
- 'c++ ' => 'cpp ' ,
115
+ 'backbone' => 'bb' ,
116
+ 'cpp ' => 'c++ ' ,
117
117
'coffeescript' => 'cs' ,
118
118
'crystal' => 'cr' ,
119
119
'elixir' => 'ex' ,
120
120
'javascript' => 'js' ,
121
121
'julia' => 'jl' ,
122
122
'jquery' => '$' ,
123
- 'knockout.js ' => 'ko' ,
123
+ 'knockout' => 'ko' ,
124
124
'kubernetes' => 'k8s' ,
125
125
'less' => 'ls' ,
126
126
'lodash' => '_' ,
127
- 'löve ' => 'love ' ,
127
+ 'love ' => 'löve ' ,
128
128
'marionette' => 'mn' ,
129
129
'markdown' => 'md' ,
130
130
'matplotlib' => 'mpl' ,
131
131
'modernizr' => 'mdr' ,
132
- 'moment.js ' => 'mt' ,
132
+ 'moment' => 'mt' ,
133
133
'openjdk' => 'java' ,
134
134
'nginx' => 'ngx' ,
135
135
'numpy' => 'np' ,
136
136
'pandas' => 'pd' ,
137
137
'postgresql' => 'pg' ,
138
138
'python' => 'py' ,
139
- 'ruby.on. rails' => 'ror' ,
139
+ 'rails' => 'ror' ,
140
140
'ruby' => 'rb' ,
141
141
'rust' => 'rs' ,
142
142
'sass' => 'scss' ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def as_json
20
20
if doc . options [ :attribution ] . is_a? ( String )
21
21
json [ :attribution ] = doc . options [ :attribution ] . strip
22
22
end
23
- json [ :alias ] = Docs . aliases [ doc . slug ]
23
+ json [ :alias ] = Docs . aliases [ doc . slug [ /^[^~]+/ , 0 ] ]
24
24
result << json
25
25
end
26
26
end
You can’t perform that action at this time.
0 commit comments