Skip to content

Latest commit

 

History

History
73 lines (67 loc) · 1.29 KB

TEMPLATE.md

File metadata and controls

73 lines (67 loc) · 1.29 KB

Templates

Html table structure

<table>
  <tr>
    <th>Repo</th>
    <th>Web</th>
    <th>Stars</th>
  </tr>
  <tr>
    <td><a href="<Repo>">Name</a></td>
    <td><a href="<WebSite>">🌐</a></td>
    <td>
      <a href="<Repo/stargazers>">
         <img src="https://img.shields.io/github/stars/<User>/<Repo>?style=plastic">
         <!-- https://shields.io/category/social -->
      </a>
    </td>
  </tr>
</table>

Details opened

<details open>
<summary>Details opened</summary>
<br/>
<table>
  <tr>
    <th>Repo</th>
    <th>Web</th>
    <th>Stars</th>
  </tr>
  <tr>
    <td><a href="<Repo>">Name</a></td>
    <td><a href="<WebSite>">🌐</a></td>
    <td>
      <a href="<Repo/stargazers>">
         <img src="https://img.shields.io/github/stars/<User>/<Repo>?style=plastic">
      </a>
    </td>
  </tr>
</table>
</details> 

Details closed

<details>
<summary>Details closed</summary>
<br/>
<table>
  <tr>
    <th>Repo</th>
    <th>Web</th>
    <th>Stars</th>
  </tr>
  <tr>
    <td><a href="<Repo>">Name</a></td>
    <td><a href="<WebSite>">🌐</a></td>
    <td>
      <a href="<Repo/stargazers>">
         <img src="https://img.shields.io/github/stars/<User>/<Repo>?style=plastic">
      </a>
    </td>
  </tr>
</table>
</details>