diff --git a/appendix.md b/appendix.md index 0860d12..824b902 100644 --- a/appendix.md +++ b/appendix.md @@ -19,7 +19,7 @@ All licenses described in the choosealicense.com [repository](https://github.com {% continue %} {% endif %} {% capture seen_tags %}{{ seen_tags | append:rule_obj.tag }}{% endcapture %} - {{ rule_obj.label }} + {{ rule_obj.label }} {% endfor %} {% endfor %} @@ -53,3 +53,33 @@ All licenses described in the choosealicense.com [repository](https://github.com {% endfor %} + +## Legend + +

Open source licenses grant to the public permissions () to do things with licensed works copyright or other "intellectual property" laws might otherwise disallow.

+ +

Most open source licenses' grants of permissions are subject to compliance with conditions ().

+ +

Most open source licenses also have limitations () that usually disclaim warranty and liability and sometimes expressly exclude patent or trademark from licenses' grants.

+ +
+{% assign seen_tags = '' %} +{% for type in types %} + {% assign rules = site.data.rules[type] | sort: "label" %} + {% for rule_obj in rules %} + {% assign req = rule_obj.tag %} + {% if seen_tags contains req %} + {% continue %} + {% endif %} +
{{ rule_obj.label }}
+ {% capture seen_tags %}{{ seen_tags | append:req }}{% endcapture %} + {% for t in types %} + {% for r in site.data.rules[t] | sort: "label" %} + {% if r.tag == req %} +
{{ r.description }}
+ {% endif %} + {% endfor %} + {% endfor %} + {% endfor %} +{% endfor %} +