15 lines
519 B
TypeScript
15 lines
519 B
TypeScript
export default `# <%= username %> Awesome List [](https://github.com/sindresorhus/awesome)
|
|
|
|
> :star: generated with [simonecorsi/mawesome](https://github.com/simonecorsi/mawesome)
|
|
|
|
## Table of Contents
|
|
|
|
<% for(let [language, repositories] of stars) { %>
|
|
## <%= language %>
|
|
|
|
<% for(let repo of repositories) { %>- [<%= repo.full_name %>](<%= repo.html_url %>) - <%= repo.description %>
|
|
<% } %>
|
|
|
|
<% } %>
|
|
`;
|