forked from badges/shields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
try.html
1775 lines (1734 loc) · 82.8 KB
/
try.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html><meta charset=utf-8>
<title> Shields.io: Quality metadata badges for open source projects </title>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<meta name='description' content='We serve fast and scalable informational
images as badges for GitHub, Travis CI, Jenkins, WordPress and many more
services. Use them to track the state of your projects, or for promotional
purposes.'>
<link rel='icon' type='image/png' href='favicon.png'>
<link href='//fonts.googleapis.com/css?family=Lekton' rel='stylesheet'>
<style>
html { background-attachment: fixed;
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNDgwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii4wOCIgbnVtT2N0YXZlcz0iOCIgc3RpdGNoVGlsZXM9InN0aXRjaCIgc2VlZD0iMzQ2Ii8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPSIxIDAgMCAwIDAgIDEgMCAwIDAgMCAgMSAwIDAgMCAuOSAgLjAxIDAgMCAwIC4wMSIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIvPjwvc3ZnPg==);
}
:root, dialog { text-align: center; font-family: Lekton, sans-serif; color: #534; }
code, .code { font-family: Lekton; white-space: pre-wrap; padding: 0 4px;
background: #eef; border-radius: 4px; }
input.short { width: 5em; }
input { text-align: center; border: solid #b9a; color: #534; border-width: 0 0 1px 0;
width: 40%; height: 15px; padding: 0; background-color: transparent; }
input:focus { outline: 0; }
hr { width: 40%; border-width: 1px 0 0 0; }
a.photo { text-decoration: none; }
a.photo>img { padding: 2px; border: 1px solid grey; }
ul { text-align: left; margin-left: 25%; }
table { min-width: 50%; margin: auto; }
table.centered > tbody > tr > td:first-child { text-align: right; }
th, td { text-align: left; }
h1, h2, h3 { font-style: italic; }
h2::before { content: '☙ '; }
h2::after { content: ' ❧'; }
h2 { margin-top: 12mm; font-variant: small-caps; }
hr.spacing { border: 0; display: block; height: 3mm; }
.highlights { font-style: italic; }
#main { transition: filter 1s, -webkit-filter 1s; }
#main.blur { filter: url(#gaussian-blur); filter: blur(1px); -webkit-filter: blur(1px); }
#copyDialog { display: none; position: fixed; width: 100%; top: 0; left: 0;
border: 0; background-color: rgba(50,50,55,0.7);
opacity: 0; transition: opacity 0.5s; }
#copyForm { background: #fafaff; position: fixed; width: 100%;
top: 17%; left: 0;
overflow: auto;
max-height: 56%;
border-top: 15px solid #eaeaff;
border-bottom: 15px solid #eaeaff;
}
#suggestButton { display: none; }
table.badge > tbody > tr > th,
table.badge > tbody > tr > td > img,
table.badge > tbody > tr > td > code { cursor: pointer; }
table.badge > tbody > tr > td > img, .badge-img img, #copyImg {
height: 20px;
vertical-align: middle;
}
</style>
<main id='main'>
<img alt='Shields IO' src='logo.svg'/>
<hr class='spacing'/>
<p class=highlights>
Pixel-perfect Retina-ready Fast Consistent Hackable No tracking
</p>
<form id='searchForm' action='javascript:void 0' autocomplete=off>
<input name='projectSearch' id='projectSearch' autofill=off autofocus placeholder='search / project URL'/>
<br>
<button id='suggestButton'> Suggest badges </button>
</form>
<a href='https://gratipay.com/Shields/' style='text-decoration:none;color:rgba(0,0,0,0.1)'>donate</a>
<section id='suggestedBadges'></section>
<h3 id="build"> Build </h3>
<table class='badge'><tbody>
<tr><th> Travis: </th>
<td><img src='/travis/rust-lang/rust.svg' alt=''/></td>
<td><code>https://img.shields.io/travis/USER/REPO.svg</code></td>
</tr>
<tr><th> Travis branch: </th>
<td><img src='/travis/rust-lang/rust/master.svg' alt=''/></td>
<td><code>https://img.shields.io/travis/USER/REPO/BRANCH.svg</code></td>
</tr>
<tr><th> Wercker: </th>
<td><img src='/wercker/ci/wercker/docs.svg' alt=''/></td>
<td><code>https://img.shields.io/wercker/ci/wercker/docs.svg</code></td>
</tr>
<tr><th> TeamCity CodeBetter: </th>
<td><img src='/teamcity/codebetter/bt428.svg' alt=''/></td>
<td><code>https://img.shields.io/teamcity/codebetter/bt428.svg</code></td>
</tr>
<tr><th> TeamCity (simple build status): </th>
<td><img src='/teamcity/http/teamcity.jetbrains.com/s/bt345.svg' alt=''/></td>
<td><code>https://img.shields.io/teamcity/http/teamcity.jetbrains.com/s/bt345.svg</code></td>
</tr>
<tr><th data-keywords='teamcity'> (full build status): </th>
<td> </td>
<td><code>https://img.shields.io/teamcity/http/teamcity.jetbrains.com/e/bt345.svg</code></td>
</tr>
<tr><th> AppVeyor: </th>
<td><img src='/appveyor/ci/gruntjs/grunt.svg' alt=''/></td>
<td><code>https://img.shields.io/appveyor/ci/gruntjs/grunt.svg</code></td>
</tr>
<tr><th> AppVeyor branch: </th>
<td><img src='/appveyor/ci/gruntjs/grunt/master.svg' alt=''/></td>
<td><code>https://img.shields.io/appveyor/ci/gruntjs/grunt/master.svg</code></td>
</tr>
<tr><th> AppVeyor tests: </th>
<td><img src='/appveyor/tests/NZSmartie/coap-net-iu0to.svg' alt=''/></td>
<td><code>https://img.shields.io/appveyor/tests/NZSmartie/coap-net-iu0to.svg</code></td>
</tr>
<tr><th> AppVeyor tests branch: </th>
<td><img src='/appveyor/tests/NZSmartie/coap-net-iu0to/master.svg' alt=''/></td>
<td><code>https://img.shields.io/appveyor/tests/NZSmartie/coap-net-iu0to.svg</code></td>
</tr>
<tr><th> Codeship: </th>
<td><img src='/codeship/d6c1ddd0-16a3-0132-5f85-2e35c05e22b1.svg' alt=''/></td>
<td><code>https://img.shields.io/codeship/d6c1ddd0-16a3-0132-5f85-2e35c05e22b1.svg</code></td>
</tr>
<tr><th> Codeship: </th>
<td><img src='/codeship/d6c1ddd0-16a3-0132-5f85-2e35c05e22b1/master.svg' alt=''/></td>
<td><code>https://img.shields.io/codeship/d6c1ddd0-16a3-0132-5f85-2e35c05e22b1/master.svg</code></td>
</tr>
<tr><th> Magnum CI: </th>
<td><img src='/magnumci/ci/96ffb83fa700f069024921b0702e76ff.svg' alt=''/></td>
<td><code>https://img.shields.io/magnumci/ci/96ffb83fa700f069024921b0702e76ff.svg</code></td>
</tr>
<tr><th> Magnum CI: </th>
<td><img src='/magnumci/ci/96ffb83fa700f069024921b0702e76ff/new-meta.svg' alt=''/></td>
<td><code>https://img.shields.io/magnumci/ci/96ffb83fa700f069024921b0702e76ff/new-meta.svg</code></td>
</tr>
<tr><th> CircleCI: </th>
<td><img src='/circleci/project/github/RedSparr0w/node-csgo-parser.svg' alt=''/></td>
<td><code>https://img.shields.io/circleci/project/github/RedSparr0w/node-csgo-parser.svg</code></td>
</tr>
<tr><th> CircleCI branch: </th>
<td><img src='/circleci/project/github/RedSparr0w/node-csgo-parser/master.svg' alt=''/></td>
<td><code>https://img.shields.io/circleci/project/github/RedSparr0w/node-csgo-parser/master.svg</code></td>
</tr>
<tr><th> CircleCI token: </th>
<td><img src='/circleci/project/github/RedSparr0w/node-csgo-parser/master.svg' alt=''/></td>
<td><code>https://img.shields.io/circleci/token/YOURTOKEN/project/github/RedSparr0w/node-csgo-parser/master.svg</code></td>
</tr>
<tr><th data-doc='visualStudioTeamServices'> Visual Studio Team services: </th>
<td><img src='/vso/build/larsbrinkhoff/953a34b9-5966-4923-a48a-c41874cfb5f5/1.svg' alt=''/></td>
<td><code>https://img.shields.io/vso/build/larsbrinkhoff/953a34b9-5966-4923-a48a-c41874cfb5f5/1.svg</code></td>
</tr>
<tr><th> Shippable: </th>
<td><img src='/shippable/5444c5ecb904a4b21567b0ff.svg' alt=''/></td>
<td><code>https://img.shields.io/shippable/5444c5ecb904a4b21567b0ff.svg</code></td>
</tr>
<tr><th> Shippable branch: </th>
<td><img src='/shippable/5444c5ecb904a4b21567b0ff/master.svg' alt=''/></td>
<td><code>https://img.shields.io/shippable/5444c5ecb904a4b21567b0ff/master.svg</code></td>
</tr>
<tr><th> Snap CI branch: </th>
<td><img src='/snap-ci/ThoughtWorksStudios/eb_deployer/master.svg' alt=''/></td>
<td><code>https://img.shields.io/snap-ci/ThoughtWorksStudios/eb_deployer/master.svg</code></td>
</tr>
<tr><th> Jenkins: </th>
<td><img src='/jenkins/s/https/jenkins.qa.ubuntu.com/view/Precise/view/All%20Precise/job/precise-desktop-amd64_default.svg' alt=''/></td>
<td><code>https://img.shields.io/jenkins/s/https/jenkins.qa.ubuntu.com/view/Precise/view/All%20Precise/job/precise-desktop-amd64_default.svg</code></td>
</tr>
<tr><th> Jenkins tests: </th>
<td><img src='/jenkins/t/https/jenkins.qa.ubuntu.com/view/Precise/view/All%20Precise/job/precise-desktop-amd64_default.svg' alt=''/></td>
<td><code>https://img.shields.io/jenkins/t/https/jenkins.qa.ubuntu.com/view/Precise/view/All%20Precise/job/precise-desktop-amd64_default.svg</code></td>
</tr>
<tr><th> Jenkins coverage: </th>
<td><img src='/jenkins/c/https/jenkins.qa.ubuntu.com/view/Utopic/view/All/job/address-book-service-utopic-i386-ci.svg' alt=''/></td>
<td><code>https://img.shields.io/jenkins/c/https/jenkins.qa.ubuntu.com/view/Utopic/view/All/job/address-book-service-utopic-i386-ci.svg</code></td>
</tr>
<tr><th> Coveralls: </th>
<td><img src='/coveralls/jekyll/jekyll.svg' alt=''/></td>
<td><code>https://img.shields.io/coveralls/jekyll/jekyll.svg</code></td>
</tr>
<tr><th> Coveralls branch: </th>
<td><img src='/coveralls/jekyll/jekyll/master.svg' alt=''/></td>
<td><code>https://img.shields.io/coveralls/jekyll/jekyll/master.svg</code></td>
</tr>
<tr><th> SonarQube Coverage: </th>
<td><img src='/sonar/http/sonar.qatools.ru/ru.yandex.qatools.allure:allure-core/coverage.svg' alt=''/></td>
<td><code>https://img.shields.io/sonar/http/sonar.qatools.ru/ru.yandex.qatools.allure:allure-core/coverage.svg</code></td>
</tr>
<tr><th> SonarQube Tech Debt: </th>
<td><img src='/sonar/http/sonar.qatools.ru/ru.yandex.qatools.allure:allure-core/tech_debt.svg' alt=''/></td>
<td><code>https://img.shields.io/sonar/http/sonar.qatools.ru/ru.yandex.qatools.allure:allure-core/tech_debt.svg</code></td>
</tr>
<tr><th> TeamCity CodeBetter Coverage: </th>
<td><img src='/teamcity/coverage/bt1242.svg' alt=''/></td>
<td><code>https://img.shields.io/teamcity/coverage/bt1242.svg</code></td>
</tr>
<tr><th> Scrutinizer: </th>
<td><img src='/scrutinizer/g/filp/whoops.svg' alt=''/></td>
<td><code>https://img.shields.io/scrutinizer/g/filp/whoops.svg</code></td>
</tr>
<tr><th> Scrutinizer Coverage: </th>
<td><img src='/scrutinizer/coverage/g/filp/whoops.svg' alt=''/></td>
<td><code>https://img.shields.io/scrutinizer/coverage/g/filp/whoops.svg</code></td>
</tr>
<tr><th> Scrutinizer branch: </th>
<td><img src='/scrutinizer/coverage/g/phpmyadmin/phpmyadmin/master.svg' alt=''/></td>
<td><code>https://img.shields.io/scrutinizer/coverage/g/phpmyadmin/phpmyadmin/master.svg</code></td>
</tr>
<tr><th> Scrutinizer Build: </th>
<td><img src='/scrutinizer/build/g/filp/whoops.svg' alt=''/></td>
<td><code>https://img.shields.io/scrutinizer/build/g/filp/whoops.svg</code></td>
</tr>
<tr><th> Codecov: </th>
<td><img src='/codecov/c/github/codecov/example-python.svg' alt=''/></td>
<td><code>https://img.shields.io/codecov/c/github/codecov/example-python.svg</code></td>
</tr>
<tr><th> Codecov branch: </th>
<td><img src='/codecov/c/github/codecov/example-python/master.svg' alt=''/></td>
<td><code>https://img.shields.io/codecov/c/github/codecov/example-python/master.svg</code></td>
</tr>
<tr><th> Codecov private: </th>
<td><img src='/codecov/c/github/codecov/example-python.svg' alt=''/></td>
<td><code>https://img.shields.io/codecov/c/token/YOURTOKEN/github/codecov/example-python.svg</code></td>
</tr>
<tr><th> Coverity Scan: </th>
<td><img src='/coverity/scan/3997.svg' alt=''/></td>
<td><code>https://img.shields.io/coverity/scan/3997.svg</code></td>
</tr>
<tr><th> Coverity Code Advisor On Demand Stream Badge: </th>
<td><img src='/coverity/ondemand/streams/STREAM.svg' alt=''/></td>
<td><code>https://img.shields.io/coverity/ondemand/streams/STREAM.svg</code></td>
</tr>
<tr><th> Coverity Code Advisor On Demand Job Badge: </th>
<td><img src='/coverity/ondemand/jobs/JOB.svg' alt=''/></td>
<td><code>https://img.shields.io/coverity/ondemand/jobs/JOB.svg</code></td>
</tr>
<tr><th> HHVM: </th>
<td><img src='/hhvm/symfony/symfony.svg' alt=''/></td>
<td><code>https://img.shields.io/hhvm/symfony/symfony.svg</code></td>
</tr>
<tr><th> HHVM (branch): </th>
<td><img src='/hhvm/symfony/symfony/master.svg' alt=''/></td>
<td><code>https://img.shields.io/hhvm/symfony/symfony/master.svg</code></td>
</tr>
<tr><th> SensioLabs Insight: </th>
<td><img src='/sensiolabs/i/45afb680-d4e6-4e66-93ea-bcfa79eb8a87.svg' alt=''/></td>
<td><code>https://img.shields.io/sensiolabs/i/45afb680-d4e6-4e66-93ea-bcfa79eb8a87.svg</code></td>
</tr>
<tr><th> Dockbit: </th>
<td><img src='/dockbit/DockbitStatus/health.svg?token=TvavttxFHJ4qhnKstDxrvBXM' alt=''/></td>
<td><code>https://img.shields.io/dockbit/ORGANIZATION_NAME/PIPELINE_NAME.svg?token=PIPELINE_TOKEN</code></td>
</tr>
<tr><th> continuousphp: </th>
<td><img src='/continuousphp/git-hub/doctrine/dbal/master.svg' alt=''/></td>
<td><code>https://img.shields.io/continuousphp/git-hub/doctrine/dbal/master.svg</code></td>
</tr>
<tr><th data-keywords='documentation'>Read the Docs:</th>
<td><img src='/readthedocs/pip.svg' alt=''/></td>
<td><code>https://img.shields.io/readthedocs/pip.svg</code></td>
</tr>
<tr><th data-keywords='documentation'>Read the Docs (version):</th>
<td><img src='/readthedocs/pip/stable.svg' alt=''/></td>
<td><code>https://img.shields.io/readthedocs/pip/stable.svg</code></td>
</tr>
</tbody></table>
<h3 id="downloads"> Downloads </h3>
<table class='badge'><tbody>
<tr><th data-keywords='github' data-doc='githubDoc'> Github All Releases: </th>
<td><img src='/github/downloads/atom/atom/total.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads/atom/atom/total.svg</code></td>
</tr>
<tr><th data-keywords='github' data-doc='githubDoc'> Github Releases: </th>
<td><img src='/github/downloads/atom/atom/latest/total.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads/atom/atom/latest/total.svg</code></td>
</tr>
<tr>
<th data-keywords='github' data-doc='githubDoc'> Github Pre-Releases: </th>
<td><img src='/github/downloads-pre/atom/atom/latest/total.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads-pre/atom/atom/latest/total.svg</code></td>
</tr>
<tr><th data-keywords='github' data-doc='githubDoc'> Github Releases (by Release): </th>
<td><img src='/github/downloads/atom/atom/v0.190.0/total.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads/atom/atom/v0.190.0/total.svg</code></td>
</tr>
<tr><th data-keywords='github' data-doc='githubDoc'> Github Releases (by Asset): </th>
<td><img src='/github/downloads/atom/atom/latest/atom-amd64.deb.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads/atom/atom/latest/atom-amd64.deb.svg</code></td>
</tr>
<tr>
<th data-keywords='github' data-doc='githubDoc'> Github Pre-Releases (by Asset): </th>
<td><img src='/github/downloads-pre/atom/atom/latest/atom-amd64.deb.svg' alt=''/></td>
<td><code>https://img.shields.io/github/downloads-pre/atom/atom/latest/atom-amd64.deb.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/dw/localeval.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/dw/localeval.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/dm/localeval.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/dm/localeval.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/dy/localeval.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/dy/localeval.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/dt/express.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/dt/express.svg</code></td>
</tr>
<tr><th data-keywords='ruby'> Gem: </th>
<td><img src='/gem/dv/rails/stable.svg' alt=''/></td>
<td><code>https://img.shields.io/gem/dv/rails/stable.svg</code></td>
</tr>
<tr><th data-keywords='ruby'> Gem: </th>
<td><img src='/gem/dv/rails/4.1.0.svg' alt=''/></td>
<td><code>https://img.shields.io/gem/dv/rails/4.1.0.svg</code></td>
</tr>
<tr><th data-keywords='ruby'> Gem: </th>
<td><img src='/gem/dtv/rails.svg' alt=''/></td>
<td><code>https://img.shields.io/gem/dtv/rails.svg</code></td>
</tr>
<tr><th data-keywords='ruby'> Gem: </th>
<td><img src='/gem/dt/rails.svg' alt=''/></td>
<td><code>https://img.shields.io/gem/dt/rails.svg</code></td>
</tr>
<tr><th> Chocolatey: </th>
<td><img src='/chocolatey/dt/scriptcs.svg' alt=''/></td>
<td><code>https://img.shields.io/chocolatey/dt/scriptcs.svg</code></td>
</tr>
<tr><th> NuGet: </th>
<td><img src='/nuget/dt/Microsoft.AspNetCore.Mvc.svg' alt=''/></td>
<td><code>https://img.shields.io/nuget/dt/Microsoft.AspNetCore.Mvc.svg</code></td>
</tr>
<tr><th> MyGet: </th>
<td><img src='/myget/mongodb/dt/MongoDB.Driver.Core.svg' alt=''/></td>
<td><code>https://img.shields.io/myget/mongodb/dt/MongoDB.Driver.Core.svg</code></td>
</tr>
<tr><th> MyGet tenant: </th>
<td><img src='/dotnet.myget/dotnet-coreclr/dt/Microsoft.DotNet.CoreCLR.svg' alt=''/></td>
<td><code>https://img.shields.io/dotnet.myget/dotnet-coreclr/dt/Microsoft.DotNet.CoreCLR.svg</code></td>
</tr>
<tr><th> PowerShell Gallery: </th>
<td><img src='/powershellgallery/dt/ACMESharp.svg' alt=''/></td>
<td><code>https://img.shields.io/powershellgallery/dt/ACMESharp.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/dm/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/dm/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/dw/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/dw/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/dd/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/dd/Django.svg</code></td>
</tr>
<tr><th data-keywords='conda'> Conda: </th>
<td><img src='/conda/dn/conda-forge/python.svg' alt=''/></td>
<td><code>https://img.shields.io/conda/dn/conda-forge/python.svg</code></td>
</tr>
<tr><th data-keywords='Rust'> Crates.io: </th>
<td><img src='/crates/d/rustc-serialize.svg' alt=''/></td>
<td><code>https://img.shields.io/crates/d/rustc-serialize.svg</code></td>
</tr>
<tr><th data-keywords='Rust'> Crates.io: </th>
<td><img src='/crates/dv/rustc-serialize.svg' alt=''/></td>
<td><code>https://img.shields.io/crates/dv/rustc-serialize.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist: </th>
<td><img src='/packagist/dm/doctrine/orm.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/dm/doctrine/orm.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist: </th>
<td><img src='/packagist/dd/doctrine/orm.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/dd/doctrine/orm.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist: </th>
<td><img src='/packagist/dt/doctrine/orm.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/dt/doctrine/orm.svg</code></td>
</tr>
<tr><th> Hex.pm: </th>
<td><img src='/hexpm/dw/plug.svg' alt=''/></td>
<td><code>https://img.shields.io/hexpm/dw/plug.svg</code></td>
</tr>
<tr><th> Hex.pm: </th>
<td><img src='/hexpm/dd/plug.svg' alt=''/></td>
<td><code>https://img.shields.io/hexpm/dd/plug.svg</code></td>
</tr>
<tr><th> Hex.pm: </th>
<td><img src='/hexpm/dt/plug.svg' alt=''/></td>
<td><code>https://img.shields.io/hexpm/dt/plug.svg</code></td>
</tr>
<tr><th> WordPress plugin: </th>
<td><img src='/wordpress/plugin/dt/akismet.svg' alt=''/></td>
<td><code>https://img.shields.io/wordpress/plugin/dt/akismet.svg</code></td>
</tr>
<tr><th> WordPress theme: </th>
<td><img src='/wordpress/theme/dt/hestia.svg' alt=''/></td>
<td><code>https://img.shields.io/wordpress/theme/dt/hestia.svg</code></td>
</tr>
<tr><th> SourceForge: </th>
<td><img src='/sourceforge/dm/sevenzip.svg' alt=''/></td>
<td><code>https://img.shields.io/sourceforge/dm/sevenzip.svg</code></td>
</tr>
<tr><th> SourceForge: </th>
<td><img src='/sourceforge/dw/sevenzip.svg' alt=''/></td>
<td><code>https://img.shields.io/sourceforge/dw/sevenzip.svg</code></td>
</tr>
<tr><th> SourceForge: </th>
<td><img src='/sourceforge/dd/sevenzip.svg' alt=''/></td>
<td><code>https://img.shields.io/sourceforge/dd/sevenzip.svg</code></td>
</tr>
<tr><th> SourceForge: </th>
<td><img src='/sourceforge/dt/sevenzip.svg' alt=''/></td>
<td><code>https://img.shields.io/sourceforge/dt/sevenzip.svg</code></td>
</tr>
<tr><th> SourceForge: </th>
<td><img src='/sourceforge/dt/arianne/stendhal.svg' alt=''/></td>
<td><code>https://img.shields.io/sourceforge/dt/arianne/stendhal.svg</code></td>
</tr>
<tr><th data-keywords='atom'> apm: </th>
<td><img src='/apm/dm/vim-mode.svg' alt=''/></td>
<td><code>https://img.shields.io/apm/dm/vim-mode.svg</code></td>
</tr>
<tr><th> Puppet Forge: </th>
<td><img src='/puppetforge/dt/camptocamp/openldap.svg' alt=''/></td>
<td><code>https://img.shields.io/puppetforge/dt/camptocamp/openldap.svg</code></td>
</tr>
<tr><th data-keywords='dub'> DUB: </th>
<td><img src='/dub/dd/vibe-d.svg' alt=''/></td>
<td><code>https://img.shields.io/dub/dd/vibe-d.svg</code></td>
</tr>
<tr><th data-keywords='dub'> DUB: </th>
<td><img src='/dub/dw/vibe-d.svg' alt=''/></td>
<td><code>https://img.shields.io/dub/dw/vibe-d.svg</code></td>
</tr>
<tr><th data-keywords='dub'> DUB: </th>
<td><img src='/dub/dm/vibe-d/latest.svg' alt=''/></td>
<td><code>https://img.shields.io/dub/dm/vibe-d/latest.svg</code></td>
</tr>
<tr><th data-keywords='dub'> DUB: </th>
<td><img src='/dub/dt/vibe-d/0.7.23.svg' alt=''/></td>
<td><code>https://img.shields.io/dub/dt/vibe-d/0.7.23.svg</code></td>
</tr>
<tr><th data-keywords='sublime'> Package Control: </th>
<td><img src='/packagecontrol/dm/GitGutter.svg' alt=''/></td>
<td><code>https://img.shields.io/packagecontrol/dm/GitGutter.svg</code></td>
</tr>
<tr><th data-keywords='sublime'> Package Control: </th>
<td><img src='/packagecontrol/dw/GitGutter.svg' alt=''/></td>
<td><code>https://img.shields.io/packagecontrol/dw/GitGutter.svg</code></td>
</tr>
<tr><th data-keywords='sublime'> Package Control: </th>
<td><img src='/packagecontrol/dd/GitGutter.svg' alt=''/></td>
<td><code>https://img.shields.io/packagecontrol/dd/GitGutter.svg</code></td>
</tr>
<tr><th data-keywords='sublime'> Package Control: </th>
<td><img src='/packagecontrol/dt/GitGutter.svg' alt=''/></td>
<td><code>https://img.shields.io/packagecontrol/dt/GitGutter.svg</code></td>
</tr>
<tr><th data-keywords='website' data-doc='websiteDoc'> Website: </th>
<td><img src='/website-up-down-green-red/http/shields.io.svg?label=my-website' alt=''/></td>
<td><code>https://img.shields.io/website-up-down-green-red/http/shields.io.svg?label=my-website</code></td>
</tr>
<tr><th data-keywords='cocoapods'> CocoaPods: </th>
<td><img src='/cocoapods/dt/AFNetworking.svg' alt='' /></td>
<td><code>https://img.shields.io/cocoapods/dt/AFNetworking.svg</code></td>
</tr>
<tr><th data-keywords='cocoapods'> CocoaPods: </th>
<td><img src='/cocoapods/dm/AFNetworking.svg' alt='' /></td>
<td><code>https://img.shields.io/cocoapods/dm/AFNetworking.svg</code></td>
</tr>
<tr><th data-keywords='cocoapods'> CocoaPods: </th>
<td><img src='/cocoapods/dw/AFNetworking.svg' alt='' /></td>
<td><code>https://img.shields.io/cocoapods/dw/AFNetworking.svg</code></td>
</tr>
<tr><th data-keywords='amo firefox'> Mozilla Add-on: </th>
<td><img src='/amo/d/dustman.svg' alt=''/></td>
<td><code>https://img.shields.io/amo/d/dustman.svg</code></td>
</tr>
<tr><th data-keywords='vscode-marketplace'>Visual Studio Marketplace: </th>
<td><img src='/vscode-marketplace/d/ritwickdey.LiveServer.svg' alt=''/></td>
<td><code>https://img.shields.io/vscode-marketplace/d/ritwickdey.LiveServer.svg</code></td>
</tr>
<tr><th data-keywords='jetbrains plugin'> JetBrains plugins: </th>
<td><img src='/jetbrains/plugin/d/1347-scala.svg' alt=''/></td>
<td><code>https://img.shields.io/jetbrains/plugin/d/1347-scala.svg</code></td>
<tr><th> Ansible Role: </th>
<td><img src='/ansible/role/d/3078.svg' alt=''/></td>
<td><code>https://img.shields.io/ansible/role/d/3078.svg</code></td>
</tr>
</tbody></table>
<h3 id="version"> Version </h3>
<table class='badge'><tbody>
<tr><th data-keywords='cdn cdnjs' data-link='https://cdnjs.com/libraries/jquery'> CDNJS: </th>
<td><img src='/cdnjs/v/jquery.svg' alt=''/></td>
<td><code>https://img.shields.io/cdnjs/v/jquery.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/v/npm.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/v/npm.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm (scoped): </th>
<td><img src='/npm/v/@cycle/core.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/v/@cycle/core.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm (tag): </th>
<td><img src='/npm/v/npm/next.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/v/npm/next.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm (scoped with tag): </th>
<td><img src='/npm/v/@cycle/core/canary.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/v/@cycle/core/canary.svg</code></td>
</tr>
<tr><th data-keywords='node'> node: </th>
<td><img src='/node/v/passport.svg' alt=''/></td>
<td><code>https://img.shields.io/node/v/passport.svg</code></td>
</tr>
<tr><th data-keywords='node'> node (scoped): </th>
<td><img src='/node/v/@stdlib/stdlib.svg' alt=''/></td>
<td><code>https://img.shields.io/node/v/@stdlib/stdlib.svg</code></td>
</tr>
<tr><th data-keywords='node'> node (tag): </th>
<td><img src='/node/v/passport/latest.svg' alt=''/></td>
<td><code>https://img.shields.io/node/v/passport/latest.svg</code></td>
</tr>
<tr><th data-keywords='node'> node (scoped with tag): </th>
<td><img src='/node/v/@stdlib/stdlib/latest.svg' alt=''/></td>
<td><code>https://img.shields.io/node/v/@stdlib/stdlib/latest.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/v/nine.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/v/nine.svg</code></td>
</tr>
<tr><th data-keywords='conda'> Conda: </th>
<td><img src='/conda/v/conda-forge/python.svg' alt=''/></td>
<td><code>https://img.shields.io/conda/v/conda-forge/python.svg</code></td>
</tr>
<tr><th data-keywords='conda'> Conda (channel only): </th>
<td><img src='/conda/vn/conda-forge/python.svg' alt=''/></td>
<td><code>https://img.shields.io/conda/vn/conda-forge/python.svg</code></td>
</tr>
<tr><th data-keywords='ruby'> Gem: </th>
<td><img src='/gem/v/formatador.svg' alt=''/></td>
<td><code>https://img.shields.io/gem/v/formatador.svg</code></td>
</tr>
<tr><th data-keywords='lua'> LuaRocks: </th>
<td><img src='/luarocks/v/mpeterv/luacheck.svg' alt=''/></td>
<td><code>https://img.shields.io/luarocks/v/mpeterv/luacheck.svg</code></td>
</tr>
<tr><th> Hackage: </th>
<td><img src='/hackage/v/lens.svg' alt=''/></td>
<td><code>https://img.shields.io/hackage/v/lens.svg</code></td>
</tr>
<tr><th data-keywords='Rust'> Crates.io: </th>
<td><img src='/crates/v/rustc-serialize.svg' alt=''/></td>
<td><code>https://img.shields.io/crates/v/rustc-serialize.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist: </th>
<td><img src='/packagist/v/symfony/symfony.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/v/symfony/symfony.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist Pre Release: </th>
<td><img src='/packagist/vpre/symfony/symfony.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/vpre/symfony/symfony.svg</code></td>
</tr>
<tr><th> Bintray: </th>
<td><img src='/bintray/v/asciidoctor/maven/asciidoctorj.svg' alt=''/></td>
<td><code>https://img.shields.io/bintray/v/asciidoctor/maven/asciidoctorj.svg</code></td>
</tr>
<tr><th> Clojars: </th>
<td><img src='/clojars/v/prismic.svg' alt=''/></td>
<td><code>https://img.shields.io/clojars/v/prismic.svg</code></td>
</tr>
<tr><th> CocoaPods: </th>
<td><img src='/cocoapods/v/AFNetworking.svg' alt='' /></td>
<td><code>https://img.shields.io/cocoapods/v/AFNetworking.svg</code></td>
</tr>
<tr><th> Bower: </th>
<td><img src='/bower/v/bootstrap.svg' alt='' /></td>
<td><code>https://img.shields.io/bower/v/bootstrap.svg</code></td>
</tr>
<tr><th> Bower Pre Release: </th>
<td><img src='/bower/vpre/bootstrap.svg' alt='' /></td>
<td><code>https://img.shields.io/bower/vpre/bootstrap.svg</code></td>
</tr>
<tr><th> Pub: </th>
<td><img src='/pub/v/box2d.svg' alt=''/></td>
<td><code>https://img.shields.io/pub/v/box2d.svg</code></td>
</tr>
<tr><th> Hex.pm: </th>
<td><img src='/hexpm/v/plug.svg' alt=''/></td>
<td><code>https://img.shields.io/hexpm/v/plug.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub tag: </th>
<td><img src='/github/tag/expressjs/express.svg' alt=''/></td>
<td><code>https://img.shields.io/github/tag/expressjs/express.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub package version: </th>
<td><img src='/github/package-json/v/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/package-json/v/badges/shields.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub manifest version: </th>
<td><img src='/github/manifest-json/v/RedSparr0w/IndieGala-Helper.svg' alt=''/></td>
<td><code>https://img.shields.io/github/manifest-json/v/RedSparr0w/IndieGala-Helper.svg</code></td>
<tr><th data-doc='githubDoc'> GitHub release: </th>
<td><img src='/github/release/qubyte/rubidium.svg' alt=''/></td>
<td><code>https://img.shields.io/github/release/qubyte/rubidium.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub (pre-)release: </th>
<td><img src='/github/release/qubyte/rubidium/all.svg' alt=''/></td>
<td><code>https://img.shields.io/github/release/qubyte/rubidium/all.svg</code></td>
</tr>
<tr><th data-keywords='GitHub commit' data-doc='githubDoc'> GitHub commits: </th>
<td><img src='/github/commits-since/SubtitleEdit/subtitleedit/3.4.7.svg' alt=''/></td>
<td><code>https://img.shields.io/github/commits-since/SubtitleEdit/subtitleedit/3.4.7.svg</code></td>
</tr>
<tr><th data-keywords='GitHub commit' data-doc='githubDoc'>Github commits (since latest release): </th>
<td><img src='/github/commits-since/SubtitleEdit/subtitleedit/latest.svg' alt=''/></td>
<td><code>https://img.shields.io/github/commits-since/SubtitleEdit/subtitleedit/latest.svg</code></td>
</tr>
<tr><th> Chef cookbook: </th>
<td><img src='/cookbook/v/chef-sugar.svg' alt=''/></td>
<td><code>https://img.shields.io/cookbook/v/chef-sugar.svg</code></td>
</tr>
<tr><th> NuGet: </th>
<td><img src='/nuget/v/Nuget.Core.svg' alt=''/></td>
<td><code>https://img.shields.io/nuget/v/Nuget.Core.svg</code></td>
</tr>
<tr><th> NuGet Pre Release: </th>
<td><img src='/nuget/vpre/Microsoft.AspNet.Mvc.svg' alt=''/></td>
<td><code>https://img.shields.io/nuget/vpre/Microsoft.AspNet.Mvc.svg</code></td>
</tr>
<tr><th> MyGet: </th>
<td><img src='/myget/mongodb/v/MongoDB.Driver.Core.svg' alt=''/></td>
<td><code>https://img.shields.io/myget/mongodb/v/MongoDB.Driver.Core.svg</code></td>
</tr>
<tr><th> MyGet Pre Release: </th>
<td><img src='/myget/yolodev/vpre/YoloDev.Dnx.FSharp.svg' alt=''/></td>
<td><code>https://img.shields.io/myget/yolodev/vpre/YoloDev.Dnx.FSharp.svg</code></td>
</tr>
<tr><th> MyGet tenant: </th>
<td><img src='/dotnet.myget/dotnet-coreclr/v/Microsoft.DotNet.CoreCLR.svg' alt=''/></td>
<td><code>https://img.shields.io/dotnet.myget/dotnet-coreclr/v/Microsoft.DotNet.CoreCLR.svg</code></td>
</tr>
<tr><th> Chocolatey: </th>
<td><img src='/chocolatey/v/git.svg' alt=''/></td>
<td><code>https://img.shields.io/chocolatey/v/git.svg</code></td>
</tr>
<tr><th> PowerShell Gallery: </th>
<td><img src='/powershellgallery/v/Zyborg.Vault.svg' alt=''/></td>
<td><code>https://img.shields.io/powershellgallery/v/Zyborg.Vault.svg</code></td>
</tr>
<tr><th> Puppet Forge: </th>
<td><img src='/puppetforge/v/vStone/percona.svg' alt=''/></td>
<td><code>https://img.shields.io/puppetforge/v/vStone/percona.svg</code></td>
</tr>
<tr><th> Maven Central: </th>
<td><img src='/maven-central/v/org.apache.maven/apache-maven.svg' alt=''/></td>
<td><code>https://img.shields.io/maven-central/v/org.apache.maven/apache-maven.svg</code></td>
</tr>
<tr><th> Maven Central with version prefix filter: </th>
<td><img src='/maven-central/v/org.apache.maven/apache-maven/2.svg' alt=''/></td>
<td><code>https://img.shields.io/maven-central/v/org.apache.maven/apache-maven/2.svg</code></td>
</tr>
<tr><th> Sonatype Nexus (Releases): </th>
<td><img src='/nexus/r/https/oss.sonatype.org/com.google.guava/guava.svg' alt=''/></td>
<td><code>https://img.shields.io/nexus/r/https/oss.sonatype.org/com.google.guava/guava.svg</code></td>
</tr>
<tr><th> Sonatype Nexus (Snapshots): </th>
<td><img src='/nexus/s/https/oss.sonatype.org/com.google.guava/guava.svg' alt=''/></td>
<td><code>https://img.shields.io/nexus/s/https/oss.sonatype.org/com.google.guava/guava.svg</code></td>
</tr>
<tr><th> WordPress plugin: </th>
<td><img src='/wordpress/plugin/v/akismet.svg' alt=''/></td>
<td><code>https://img.shields.io/wordpress/plugin/v/akismet.svg</code></td>
</tr>
<tr><th> WordPress: </th>
<td><img src='/wordpress/v/akismet.svg' alt=''/></td>
<td><code>https://img.shields.io/wordpress/v/akismet.svg</code></td>
</tr>
<tr><th data-keywords='atom'> apm: </th>
<td><img src='/apm/v/vim-mode.svg' alt=''/></td>
<td><code>https://img.shields.io/apm/v/vim-mode.svg</code></td>
</tr>
<tr><th data-keywords='perl'> CPAN: </th>
<td><img src='/cpan/v/Config-Augeas.svg' alt=''/></td>
<td><code>https://img.shields.io/cpan/v/Config-Augeas.svg</code></td>
</tr>
<tr><th data-keywords='R'> CRAN: </th>
<td><img src='/cran/v/devtools.svg' alt=''/></td>
<td><code>https://img.shields.io/cran/v/devtools.svg</code></td>
</tr>
<tr><th data-keywords='R'> CRAN: </th>
<td><img src='/cran/l/devtools.svg' alt=''/></td>
<td><code>https://img.shields.io/cran/l/devtools.svg</code></td>
</tr>
<tr><th data-keywords='tex'> CTAN: </th>
<td><img src='/ctan/v/tex.svg' alt=''/></td>
<td><code>https://img.shields.io/ctan/v/tex.svg</code></td>
</tr>
<tr><th data-keywords='dub'> DUB: </th>
<td><img src='/dub/v/vibe-d.svg' alt=''/></td>
<td><code>https://img.shields.io/dub/v/vibe-d.svg</code></td>
</tr>
<tr><th data-keywords='aur'> AUR: </th>
<td><img src='/aur/version/yaourt.svg' alt=''/></td>
<td><code>https://img.shields.io/aur/version/yaourt.svg</code></td>
</tr>
<tr><th data-keywords='chrome'> Chrome Web Store: </th>
<td><img src='/chrome-web-store/v/nimelepbpejjlbmoobocpfnjhihnpked.svg' alt=''/></td>
<td><code>https://img.shields.io/chrome-web-store/v/nimelepbpejjlbmoobocpfnjhihnpked.svg</code></td>
</tr>
<tr><th> homebrew: </th>
<td><img src='/homebrew/v/cake.svg' alt=''/></td>
<td><code>https://img.shields.io/homebrew/v/cake.svg</code></td>
</tr>
<tr><th data-keywords='amo firefox'> Mozilla Add-on: </th>
<td><img src='/amo/v/dustman.svg' alt=''/></td>
<td><code>https://img.shields.io/amo/v/dustman.svg</code></td>
</tr>
<tr><th data-keywords='vscode-marketplace'>Visual Studio Marketplace: </th>
<td><img src='/vscode-marketplace/v/ritwickdey.LiveServer.svg' alt=''/></td>
<td><code>https://img.shields.io/vscode-marketplace/v/ritwickdey.LiveServer.svg</code></td>
</tr>
<tr><th> Itunes App Store: </th>
<td><img src='/itunes/v/803453959.svg' alt=''/></td>
<td><code>https://img.shields.io/itunes/v/BUNDLE_ID.svg</code></td>
</tr>
<tr><th data-keywords='jitpack java maven'> JitPack: </th>
<td><img src='/jitpack/v/jitpack/maven-simple.svg' alt=''/></td>
<td><code>https://img.shields.io/jitpack/v/jitpack/maven-simple.svg</code></td>
</tr>
</tbody></table>
<h3 id="social"> Social </h3>
<table class='badge'><tbody>
<tr><th data-doc='githubDoc'> GitHub forks: </th>
<td><img src='/github/forks/badges/shields.svg?style=social&label=Fork' alt=''/></td>
<td><code>https://img.shields.io/github/forks/badges/shields.svg?style=social&label=Fork</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub stars: </th>
<td><img src='/github/stars/badges/shields.svg?style=social&label=Stars' alt=''/></td>
<td><code>https://img.shields.io/github/stars/badges/shields.svg?style=social&label=Stars</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub watchers: </th>
<td><img src='/github/watchers/badges/shields.svg?style=social&label=Watch' alt=''/></td>
<td><code>https://img.shields.io/github/watchers/badges/shields.svg?style=social&label=Watch</code></td>
</tr>
<tr><th data-doc='githubDoc'> GitHub followers: </th>
<td><img src='/github/followers/espadrine.svg?style=social&label=Follow' alt=''/></td>
<td><code>https://img.shields.io/github/followers/espadrine.svg?style=social&label=Follow</code></td>
</tr>
<tr><th> Twitter URL: </th>
<td><img src='/twitter/url/http/shields.io.svg?style=social' alt=''/></td>
<td><code>https://img.shields.io/twitter/url/http/shields.io.svg?style=social</code></td>
</tr>
<tr><th> Twitter Follow: </th>
<td><img src='/twitter/follow/espadrine.svg?style=social&label=Follow' alt=''/></td>
<td><code>https://img.shields.io/twitter/follow/espadrine.svg?style=social&label=Follow</code></td>
</tr>
</tbody></table>
<h3 id="miscellaneous"> Miscellaneous </h3>
<table class='badge'><tbody>
<tr><th> Gratipay: </th>
<td><img src='/gratipay/project/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/gratipay/project/shields.svg</code></td>
</tr>
<tr><th> Bountysource: </th>
<td><img src='/bountysource/team/mozilla-core/activity.svg' alt=''/></td>
<td><code>https://img.shields.io/bountysource/team/mozilla-core/activity.svg</code></td>
</tr>
<tr><th> Beerpay: </th>
<td><img src='/beerpay/hashdog/scrapfy-chrome-extension.svg' alt=''/></td>
<td><code>https://img.shields.io/beerpay/hashdog/scrapfy-chrome-extension.svg</code></td>
</tr>
<tr><th> Code Climate: </th>
<td><img src='/codeclimate/github/kabisaict/flow.svg' alt=''/></td>
<td><code>https://img.shields.io/codeclimate/github/kabisaict/flow.svg</code></td>
</tr>
<tr><th> Code Climate: </th>
<td><img src='/codeclimate/coverage/github/triAGENS/ashikawa-core.svg' alt=''/></td>
<td><code>https://img.shields.io/codeclimate/coverage/github/triAGENS/ashikawa-core.svg</code></td>
</tr>
<tr><th> Code Climate: </th>
<td><img src='/codeclimate/issues/github/me-and/mdf.svg' alt=''/></td>
<td><code>https://img.shields.io/codeclimate/issues/github/me-and/mdf.svg</code></td>
</tr>
<tr><th> Codetally:</th>
<td><img src='/codetally/triggerman722/colorstrap.svg' alt=''/></td>
<td><code>https://img.shields.io/codetally/triggerman722/colorstrap.svg</code></td>
</tr>
<tr><th> bitHound: </th>
<td><img src='/bithound/code/github/rexxars/sse-channel.svg' alt=''/></td>
<td><code>https://img.shields.io/bithound/code/github/rexxars/sse-channel.svg</code></td>
</tr>
<tr><th> Gemnasium: </th>
<td><img src='/gemnasium/mathiasbynens/he.svg' alt=''/></td>
<td><code>https://img.shields.io/gemnasium/mathiasbynens/he.svg</code></td>
</tr>
<tr><th> Hackage-Deps: </th>
<td><img src='/hackage-deps/v/lens.svg' alt=''/></td>
<td><code>https://img.shields.io/hackage-deps/v/lens.svg</code></td>
</tr>
<tr><th data-keywords='Rust'> Crates.io: </th>
<td><img src='/crates/l/rustc-serialize.svg' alt=''/></td>
<td><code>https://img.shields.io/crates/l/rustc-serialize.svg</code></td>
</tr>
<tr><th> Requires.io: </th>
<td><img src='/requires/github/celery/celery.svg' alt=''/></td>
<td><code>https://img.shields.io/requires/github/celery/celery.svg</code></td>
</tr>
<tr><th> VersionEye: </th>
<td><img src='/versioneye/d/ruby/rails.svg' alt=''/></td>
<td><code>https://img.shields.io/versioneye/d/ruby/rails.svg</code></td>
</tr>
<tr><th data-keywords='PHP'> Packagist: </th>
<td><img src='/packagist/l/doctrine/orm.svg' alt=''/></td>
<td><code>https://img.shields.io/packagist/l/doctrine/orm.svg</code></td>
</tr>
<tr><th data-keywords='node'> npm: </th>
<td><img src='/npm/l/express.svg' alt=''/></td>
<td><code>https://img.shields.io/npm/l/express.svg</code></td>
</tr>
<tr><th data-keywords='atom'> apm: </th>
<td><img src='/apm/l/vim-mode.svg' alt=''/></td>
<td><code>https://img.shields.io/apm/l/vim-mode.svg</code></td>
</tr>
<tr><th> Bower: </th>
<td><img src='/bower/l/bootstrap.svg' alt='' /></td>
<td><code>https://img.shields.io/bower/l/bootstrap.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/l/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/l/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/wheel/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/wheel/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/format/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/format/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/pyversions/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/pyversions/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/implementation/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/implementation/Django.svg</code></td>
</tr>
<tr><th data-keywords='python'> PyPI: </th>
<td><img src='/pypi/status/Django.svg' alt=''/></td>
<td><code>https://img.shields.io/pypi/status/Django.svg</code></td>
</tr>
<tr><th> Hex.pm: </th>
<td><img src='/hexpm/l/plug.svg' alt=''/></td>
<td><code>https://img.shields.io/hexpm/l/plug.svg</code></td>
</tr>
<tr><th> CocoaPods: </th>
<td><img src='/cocoapods/l/AFNetworking.svg' alt='' /></td>
<td><code>https://img.shields.io/cocoapods/l/AFNetworking.svg</code></td>
</tr>
<tr><th data-keywords='perl'> CPAN: </th>
<td><img src='/cpan/l/Config-Augeas.svg' alt='' /></td>
<td><code>https://img.shields.io/cpan/l/Config-Augeas.svg</code></td>
</tr>
<tr><th data-keywords='tex'> CTAN: </th>
<td><img src='/ctan/l/novel.svg' alt='' /></td>
<td><code>https://img.shields.io/ctan/l/novel.svg</code></td>
</tr>
<tr><th> Wheelmap: </th>
<td><img src='/wheelmap/a/2323004600.svg' alt='' /></td>
<td><code>https://img.shields.io/wheelmap/a/2323004600.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue' data-doc='githubDoc'> GitHub issues: </th>
<td><img src='/github/issues/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue' data-doc='githubDoc'></th>
<td><img src='/github/issues-raw/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-raw/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest pr' data-doc='githubDoc'> GitHub pull requests: </th>
<td><img src='/github/issues-pr/cdnjs/cdnjs.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr/cdnjs/cdnjs.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest pr' data-doc='githubDoc'></th>
<td><img src='/github/issues-pr-raw/cdnjs/cdnjs.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr-raw/cdnjs/cdnjs.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue' data-doc='githubDoc'> GitHub closed issues: </th>
<td><img src='/github/issues-closed/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-closed/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue' data-doc='githubDoc'></th>
<td><img src='/github/issues-closed-raw/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-closed-raw/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest pr' data-doc='githubDoc'> GitHub closed pull requests: </th>
<td><img src='/github/issues-pr-closed/cdnjs/cdnjs.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr-closed/cdnjs/cdnjs.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest pr' data-doc='githubDoc'></th>
<td><img src='/github/issues-pr-closed-raw/cdnjs/cdnjs.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr-closed/cdnjs/cdnjs.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue label' data-doc='githubDoc'> GitHub issues by-label:</th>
<td><img src='/github/issues/badges/shields/service-badge.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/badges/shields/service-badge.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue label' data-doc='githubDoc'></th>
<td><img src='/github/issues-raw/badges/shields/service-badge.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-raw/badges/shields/service-badge.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequests label' data-doc='githubDoc'>GitHub pull requests by-label:</th>
<td><img src='/github/issues-pr/badges/shields/service-badge.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr/badges/shields/service-badge.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequests label' data-doc='githubDoc'></th>
<td><img src='/github/issues-pr-raw/badges/shields/service-badge.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues-pr-raw/badges/shields/service-badge.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue state: </th>
<td><img src='/github/issues/detail/s/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue title: </th>
<td><img src='/github/issues/detail/s/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/s/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue author: </th>
<td><img src='/github/issues/detail/u/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/u/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrqeuest detail' data-doc='githubDoc'> GitHub issue label: </th>
<td><img src='/github/issues/detail/label/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/label/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue comments: </th>
<td><img src='/github/issues/detail/comments/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/comments/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue age: </th>
<td><img src='/github/issues/detail/age/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/age/badges/shields/979.svg</code></td>
</tr>
<tr><th data-keywords='GitHub issue pullrequest detail' data-doc='githubDoc'> GitHub issue last update: </th>
<td><img src='/github/issues/detail/last-update/badges/shields/979.svg' alt=''/></td>
<td><code>https://img.shields.io/github/issues/detail/last-update/badges/shields/979.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'data-keywords='GitHub release date'> GitHub Release Date: </th>
<td><img src='/github/release-date/SubtitleEdit/subtitleedit.svg' alt=''/></td>
<td><code>https://img.shields.io/github/release-date/SubtitleEdit/subtitleedit.svg</code></td>
</tr>
<tr><th data-doc='githubDoc'data-keywords='GitHub release date'> GitHub (Pre-)Release Date: </th>
<td><img src='/github/release-date-pre/Cockatrice/Cockatrice.svg' alt=''/></td>
<td><code>https://img.shields.io/github/release-date-pre/Cockatrice/Cockatrice.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest detail check' data-doc='githubDoc'> GitHub pull request check state: </th>
<td><img src='/github/status/s/pulls/badges/shields/1110.svg' alt=''/></td>
<td><code>https://img.shields.io/github/status/s/pulls/badges/shields/1110.svg</code></td>
</tr>
<tr><th data-keywords='GitHub pullrequest detail check' data-doc='githubDoc'> GitHub pull request check contexts: </th>
<td><img src='/github/status/contexts/pulls/badges/shields/1110.svg' alt=''/></td>
<td><code>https://img.shields.io/github/status/contexts/pulls/badges/shields/1110.svg</code></td>
</tr>
<tr><th data-keywords='GitHub contributor' data-doc='githubDoc'> GitHub contributors: </th>
<td><img src='/github/contributors/cdnjs/cdnjs.svg' alt=''/></td>
<td><code>https://img.shields.io/github/contributors/cdnjs/cdnjs.svg</code></td>
</tr>
<tr><th data-keywords='GitHub license' data-doc='githubDoc'> license: </th>
<td><img src='/github/license/mashape/apistatus.svg' alt=''/></td>
<td><code>https://img.shields.io/github/license/mashape/apistatus.svg</code></td>
</tr>
<tr><th data-keywords='GitHub file size' data-doc='githubDoc'> Github file size: </th>
<td><img src='/github/size/webcaetano/craft/build/phaser-craft.min.js.svg' alt=''/></td>
<td><code>https://img.shields.io/github/size/webcaetano/craft/build/phaser-craft.min.js.svg</code></td>
</tr>
<tr><th data-keywords='GitHub search hit counter' data-doc='githubDoc'> Github search hit counter: </th>
<td><img src='/github/search/torvalds/linux/goto.svg' alt=''/></td>
<td><code>https://img.shields.io/github/search/torvalds/linux/goto.svg</code></td>
<tr><th data-keywords='GitHub commit commits activity' data-doc='githubDoc'> GitHub commit activity the past week, 4 weeks, year </th>
<td><img src='/github/commit-activity/y/eslint/eslint.svg' alt=''/></td>
<td><code>https://img.shields.io/github/commit-activity/y/eslint/eslint.svg</code></td>
</tr>
<tr><th data-keywords='GitHub last latest commit' data-doc='githubDoc'> GitHub last commit: </th>
<td><img src='/github/last-commit/google/skia.svg' alt=''/></td>
<td><code>https://img.shields.io/github/commits/google/skia/last.svg</code></td>
</tr>
<tr><th data-keywords='GitHub last latest commit' data-doc='githubDoc'> GitHub last commit (branch): </th>
<td><img src='/github/last-commit/google/skia/infra/config.svg' alt=''/></td>
<td><code>https://img.shields.io/github/commits/google/skia/infra/config/last.svg</code></td>
</tr>
<tr><th data-keywords='GitHub top language' data-doc='githubDoc'> GitHub top language: </th>
<td><img src='/github/languages/top/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/languages/top/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub language count' data-doc='githubDoc'> GitHub language count: </th>
<td><img src='/github/languages/count/badges/shields.svg' alt=''/></td>
<td><code>https://img.shields.io/github/languages/count/badges/shields.svg</code></td>
</tr>
<tr><th data-keywords='GitHub byte code size' data-doc='githubDoc'> GitHub code size in bytes: </th>