zed/script/licenses/template.md.hbs
Peter Tripp 48c6eb9ac7
Add script to generate license dependencies as csv (#18411)
Co-authored-by: Joseph T. Lyons <JosephTLyons@gmail.com>
2024-09-26 16:21:20 -04:00

21 lines
424 B
Handlebars

## Overview of licenses:
{{#each overview}}
* {{name}} ({{count}})
{{/each}}
### All license texts:
{{#each licenses}}
#### {{name}}
##### Used by:
{{#each used_by}}
* [{{crate.name}} {{crate.version}}]({{#if crate.repository}} {{crate.repository}} {{else}} https://crates.io/crates/{{crate.name}} {{/if}})
{{/each}}
{{text}}
--------------------------------------------------------------------------------
{{/each}}