1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-02 16:39:13 +02:00
choosealicense.com/javascripts/annotations.js

11 lines
303 B
JavaScript
Raw Normal View History

---
---
var annotations = {
{% for type_hash in site.rules %}
"{{ type_hash[0] }}": {
{% for rule_hash in type_hash[1] %}
"{{ rule_hash[0] }}" : "{{ rule_hash[1].description }}"{% if forloop.rindex0 > 0 %},{% endif %}
{% endfor %}
}{% if forloop.rindex0 > 0 %},{% endif %}
{% endfor %}
}