File tree Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change @@ -20,27 +20,17 @@ Validators
20
20
21
21
<nav class =" intra " markdown =" 1 " >
22
22
23
- - [ .NET] ( #validator-dotnet )
24
- - [ Action Script 3] ( #validator-action-script-3 )
25
- - [ C] ( #validator-c )
26
- - [ C++] ( #validator-cpp )
27
- - [ Clojure] ( #validator-clojure )
28
- - [ Dart] ( #validator-dart )
29
- - [ Erlang] ( #validator-erlang )
30
- - [ Go] ( #validator-go )
31
- - [ Haskell] ( #validator-haskell )
32
- - [ Java] ( #validator-java )
33
- - [ JavaScript] ( #validator-javascript )
34
- - [ PHP] ( #validator-php )
35
- - [ Perl] ( #validator-perl )
36
- - [ Python] ( #validator-python )
37
- - [ Ruby] ( #validator-ruby )
23
+ {% assign validator-libraries = site.data.validator-libraries | sort:"name" %}
24
+
25
+ {% for language in validator-libraries %}
26
+ - [ {{ language.name }}] (#validator-{% if language.anchor-name %}{{ language.anchor-name }}{% else %}{{ language.name | downcase }}{% endif %})
27
+ {% endfor %}
38
28
39
29
</nav >
40
30
41
31
<!-- To add a validator library, add it in _data/validator-libraries.yml -->
42
32
43
- {% for language in site.data. validator-libraries %}
33
+ {% for language in validator-libraries %}
44
34
45
35
- {{language.name}} <a id =" validator-{% if language.anchor-name %}{{ language.anchor-name }}{% else %}{{ language.name | downcase }}{% endif %} " ></a >{% for implementation in language.implementations %}
46
36
- [ {{ implementation.name }}] ( {{implementation.url}} ) {{implementation.notes}}
You can’t perform that action at this time.
0 commit comments